I only want to output the issues that have the status OPEN. The issues should also be issued in the order in which they are sorted in Jira.
This should be given with jql as a parameter.
This is what my current GET request looks like:
https://jira.<company>.de/rest/api/2/search?jql=project%20%3D%20<project> and Status = "OPEN"
Not all issues are issued with the status Open, and issues with a different status are also displayed.
I tried it on my test instance and this worked well:
/rest/api/2/search?jql=project%3D"ECP"%20AND%20status%3DDone
Make sure you replace your spaces with %20. The easiest is to build your url from the Jira search page, and copy-paste it into your API call.
Let me know if you need further assistance.
Have a nice day,
David
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.