I'm trying to evaluate how velocity evolves on Projects Sprints using JIRA REST API. To accomplish that, I need to how many Story Points where committed at the start of the Sprint and how many where Completed at the end of the Sprint.
Currently, I'm using this resource to get all the Issues per Sprint:
rest/agile/1.0/board/<boardId>/sprint/<sprintId>/issue
Which retrieves all the issues on the Sprint, but with the lates values for the attributes I'm interested in: that is, the current Status and the current story points. Is there a REST resource to get this information for the issue at the start and the end of a Sprint?
Community moderators have prevented the ability to post new answers.
Figured this out. It's not in the REST API docs, but if you look at the network requests on the velocity chart report page, you can see this call made:
http://myserver/jira/rest/greenhopper/1.0/rapid/charts/velocity.json?rapidViewId={rapidViewID}
I don't see any solution for this in recent Software Cloud or Jira Cloud API documentation. Has anyone solved this with latest version of API?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Like I said, it's not in the API. https://jira.atlassian.com/browse/JSWSERVER-12877
I watched browser requests in the debug console to figure this out. We've been using it for nearly 2 years now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Jeff! This helped me out!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am also looking for this. Any solution?
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.