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.
It should be all activities without limitation.
Hi @Tuncay Senturk _Snapbytes_ , 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
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.
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 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.
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 must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Tuncay Senturk _Snapbytes_ @
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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to the Community!
As far as I know, there is no straight REST API to fetch issues which were in a sprint at the start and which were added later in the sprint. However, what I can suggest is to
Sorry, it's not a straightforward solution but I don't think there is a better way in out-of-the-box Jira.
Best
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.