I am implementing Jira Rest APIs and I need to Import a List of all Sprints for each version and a List of all stories points in a Sprint.
Is there any Rest API or jql available for this?
please help to figure this out.
Thanks in advance.
First you need to get the rapidview ID for the that sprint, do this here are steps:
sprints and fix versions are not directly related. you need a workaroundto get all sprints for a fixversion.
If I use this approach, then I will have to call 3 different APIs for just sprints. please let me know How can get it in single call or by using jql
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
sprints and fix versions are not directly related
This is the issue which prevent you from getting all the infos in one call.
For a workaround using jql, you need to create a new custom field which documents this relationship, fill it via a script and query that field in the jql.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Run project = <project Name> AND Sprint in openSprints()
You will get the list of sprint.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.