How to retrieve report based on sprint creation date

Lisa New December 2, 2024

How to retrieve report based on sprint creation date in Jira

2 answers

1 vote
Nikola Perisic
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 2, 2024

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.

0 votes
David Nickell
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 2, 2024

REST REST REST :-) .....  

I might approach it this way....

  1. Sprints are tied to boards
  2. Boards are located in projects

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:

Sprints.jpg

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

 

 

Suggest an answer

Log in or Sign up to answer