The "Work scope" means the planned story points of one sprint.
How to get the "work scope" value of each sprint(closed or active sprints)? Is there API function for it or any tool is available?
With out-of-the-box Jira Cloud, you can use the REST API to get the sprint report for a specific board and sprint. To use this, please substitute your values for myCompanyURL, myBoardID, and mySprintID
myCompanyURL/rest/greenhopper/1.0/rapid/charts/sprintreport?rapidViewId=myBoardID&sprintId=mySprintID
Looking near the end of the JSON response you will find several measures for the sprint.
If you want this for all of the sprints for a project, you could first get the list of sprints and then iterate over them with the first REST CALL. Please substitute your values for myCompanyURL and myProject
myCompanyURL/rest/greenhopper/latest/integration/teamcalendars/sprint/list?jql=project=myProject
Best regards,
Bill
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.