Hello everyone,
I'm currently using JIRA REST API for Jira for an internal project. I'm interested in finding out if there's a method to retrieve information about issues that were present in a sprint at the time it commenced. Additionally, I would like to know how to obtain details of issues or tickets that were added to the sprint after its initiation.
Hello @Tuncay Senturk @
Thank you for your response.
I am looking to retrieve a list of issues within a sprint. Is there an API available for fetching the issues associated with a sprint? If so, I would like to understand if the spillover issues will also be included in the API response.
For instance, suppose we have 10 issues in sprint-1, and at the end of the sprint, 3 issues remain unresolved and are carried over to the next sprint. When I query the issues for sprint-1, will the API return all 10 issues, or only the 7 that were completed and closed within that sprint?
Hi,
You can use REST API below to retrieve issues in that Sprint
https://<your-instance>.atlassian.net/rest/agile/1.0/sprint/<sprint-id>/issue
Hi, which scope do we need to have for this API and can you please answer my 2nd question on spillovers? And what is instance in URL?
You can see details of the REST API here. For your latter question, I'm sorry there is no such information coming from the result of the REST, you need to fetch each issue's changelog
You can see the introduction section of the same document for authentication.
Hi @Tuncay Senturk , i have drilled down to use
`/rest/api/3/search?jql=project= ''` this API where I'm using expand = 'changlog', here I want to know are these change logs are all the activities or just a limited list of recent actions. If limited how to fetch all
It should be all activities without limitation.