How to retrieve report based on sprint creation date in Jira
Hi @Lisa New
Natively in Jira, you cannot do this. Having third party applications such as eazyBI can solve this issue.
As a workaround, you can use the API, especially the /rest/agile/1.0/sprint/{sprintId} endpoint.
REST REST REST :-) .....
I might approach it this way....
This Endpoint Gives you all the boards:
https://splitdimedata.atlassian.net/rest/agile/1.0/board
This one gives you all the sprints per board
https://splitdimedata.atlassian.net/rest/agile/1.0/board/1/sprint
It may be a little labor intensive unless you apply some inner loop / outer loop scripting with your favorite tool. I hard coded Board 1 in the above example.
create date is in there:
If you were trying to indicate you wanted all the issues for that sprint, then the final step is the API Endpoint Nikola suggested.
Happy RESTing
It looks like you're new here. Sign in or register to get started.