Hi is there an option to get all the stories that assigned to active sprint via REST?
Please check the REST API docs: https://docs.atlassian.com/jira-software/REST/7.0.4/#agile/1.0/sprint-getSprint
Hope this helps!
It does not, really. The question was about current sprint, not sprint by sprintId
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It would have been nicer to have something like the following or operation=issue
/rest/agile/latest/board/123/sprint?state=active&issue=all
But I think we have to make two API calls first get the details of active sprint
/rest/agile/latest/board/123/sprint?state=active
..and then take the id and call
/rest/agile/latest/board/123/sprint/999/issue
I was looking for a cleaner way too..not sure if search filter are available in the latest API as this does not show https://docs.atlassian.com/jira-software/REST/8.20.10/
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.