I want all "Resolved" issues with comments & commit details. How can I get it ?
Hello Bhuvana,
I would recommend installing the Atlassian REST API Browser to see which endpoints are available. Depending on the version of Jira that you are running, you should be able to hit the endpoint: api/2/search to execute a JQL search. For example, to find all issues with the status 'Done', you could call:
GET http://<jiraserver>/rest/api/2/search?jql=status%20%3D%20Done&fields=*all
The parameter *all* tells it to include all fields.
See this tutorial for more examples: JIRA REST API Example - Query issues
Hope this helps!
- Jennifer
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.