Can anyone help me to get the Story points completed in a specific sprint?
We usually connect directly to the rest api or database (mysql) to feed this kind of info into other management tools in the company.
I don´t mind programming something that has to traverse every issue in the sprint or whatever, but i just kind find out how JIRA knows that issue with that SP estimate was completed in that sprint.
The data can be viewed in JIRA in the velocity report, but examining SQLs logs doesn´t tell much.
Regards,
Sebastian
Hey Sebastian,
There's an older post covering this that I believe is still relevant:
First you need to get the rapidview ID for the that sprint, do this here are steps:
- Run /rest/greenhopper/1.0/rapidview to get list of rapid views with the IDs.
- After you get the rapid view ID, you will need to get list of sprints in that rapid view by running/rest/greenhopper/1.0/sprints/{rapidViewId}
- After obtaining the Sprint ID, you can run /rest/greenhopper/1.0/rapid/charts/sprintreport?rapidViewId={rapidViewId}&sprintId={sprintID} to get list of issues for that sprint.
ANd once you have all the issues completed you can sum the total story points, hours logged, or any other data you are interested in.
A later post mentions /sprint being deprecated and being replaced by /sprintquery but based on the recent api docs, I believe /sprint is still applicable. I could be wrong though. Let me know if this helps (I know that post is really old but I think the answer is still accurate).
Thats a posibility but, an issue could be in more than one sprint. And only completed in the last (for example). So if you just get the status to sum the story points for the First sprint you are getting the velocity for that sprint incorrectly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
forget it using the API i managed to obtain the sprint report, it´s "historically" accurate
thanks for everything
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am trying to find the same information you are using the API. Can you please share your solution?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How exactly did you run this in your code? I am new to this, and I am trying to run these commands in my JavaScript code. I just do not know how to.
Thank you
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.