I want to know the sprint duration for a project/board via rest api. How can I identify the default sprint duration?
Hi Meenal,
The REST API in Jira does have a method you can use to find out the start and end times for a sprint. With this information you can then figure out the duration. But the specific duration value is not something that can can be directly found in REST to the best of my knowledge. The same goes for if you are looking to find the default duration value via rest.
But if you are looking for the start/stop times, please see the Jira Software Rest API reference: agile/1.0/sprint endpoint. This just explains what REST endpoint you can call to find this information.
That specific endpoint requires you to know the ID number of the sprint itself. You can first find all the boards and their IDs in the endpoint agile/1.0/board. From there you can use the ID of the board to query the endpoint agile/1.0/board/{boardId}/sprint. That way you can enter the board ID in order to find out the sprint ID.
I hope this helps.
Andy
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.