Hi All,
I am consuming jira rest API using java.I have consumed this below api this api required issue id as of now i am sending hard code value
https://itc-cloudio.atlassian.net/rest/api/2/issue/10018.
I want to send this issue id dynamically.which is created most recently.Is there any way to get most recently created jira issues.
Thanks,
Nageswara.
You should use GET /rest/api/2/search. You can send a jql query to the rest method like
updated < -1h
As a response you would get all the issues.
You can find more info here:
https://developer.atlassian.com/cloud/jira/platform/rest/#api-api-2-search-get
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.