How can I use JIRA Rest API in C#.net

saurabh August 21, 2017

I want to connect my JIRA Server using WPF C#.net environment.

I but confused how to use JIRA REST API, Anyone can help me or post some examples...

 

Thanks

2 answers

2 votes
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 22, 2017

The REST API is not language dependent.  Atlassian keep the examples very simple and use curl to send commands over (as you don't need to write any code).

See https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis/jira-rest-api-tutorials/jira-rest-api-version-2-tutorial and the tutorials/examples beneath it.

From memory, you can do the same as curl with

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(<JIRA base url /rest/api/2/>);

0 votes
benjamin_dean September 13, 2018

Exactly right, then adding in some auth on top of that

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events