Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET wrapper for JIRA api?

Tags:

jira

I'm working on a JIRA implementation and need to make use of the API.

Does anyone know of an existing .NET wrapper for the JIRA SOAP API?

like image 619
Joe Barone Avatar asked Dec 03 '08 22:12

Joe Barone


People also ask

Can Jira make an API call?

Summary. Not all of Jira REST API methods are available on Automation for Jira as actions - but we have the Send web request, that can be used to call REST APIs!

How do I access the REST API browser in Jira?

The Atlassian application (JIRA, Confluence, or any of the others) will be installed with the REST API Browser plugin enabled. Log in to the application as an administrator and navigate to the administration console. Click REST API Browser from the navigation menu (it's with the ADVANCED or ADD-ONS links).


1 Answers

In a Visual Studio .NET project, right click the project references and choose 'Add Service Reference', enter the URL of JIRA's WSDL descriptor (http://your_installation/rpc/soap/jiraservice-v1.wsdl), and Visual Studio will auto-generate a .NET class for accessing the JIRA SOAP API.

The parameter names aren't particularly meaningful so you'll need to refer back to the documentation quite a bit at first.

like image 152
Luke Halliwell Avatar answered Oct 05 '22 10:10

Luke Halliwell