Got it, below is the query.
https://localhost/jira/rest/api/2/search?jql=project=TESTKEY%20AND%20status=open&fields=id,key,summary,descprition,status&maxResults=1000
Hi Kurt,
Tried below query, still not able to get open issues.
https://localhost/jira/rest/api/2/search?jql=project=testproject&status=open&fields=id,key,summary,description,issuetype,status&maxResults=1000
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi and welcome to the Atlassian community
Have a look to the API examples at https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/
something similar to the query below should get you the right results
curl \ -D- \ -u charlie:charlie \ -X GET \ -H "Content-Type: application/json" \ http://localhost:8080/rest/api/2/search?jql=status=open
Cheers
Kurt
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.