We recently moved from classic to rapidboards. One feature that we're really missing is the ability to use the Jira Version Workload Report. In the old days during our iteration planning meeting, we would ust this report to view the iteration (i.e., version) and determine the loading of each team member.
Now that sprints are not versions, we're looking for a substitute. I had this "dream" to build a gadget or just a simple webapp that uses the rest api to gather the info for the sprint we're building and give use the stats we need before we comit to our sprint.
Now I noticed that when you start to create a sprint, it is available to view in different browsers on different machines so that info must be persisted on the server somewhere. However, if I use the following rest call,
/rest/greenhopper/1.0/sprints/{rapidboard-id}
It doesn't list that sprint, so I have no idea how to get the sprint ID to even begin to accomplish this.
How can I get the id of this sprint so I can then list the issues in it in order to get their stats.
Also, where the heck is this API documented. I found this, https://jira.atlassian.com/plugins/servlet/restbrowser#/com-pyxis-greenhopper-jira-greenhopper-rest-filter which is very nice for testing the api, but there are no descriptions of what these things do.
I just posted my code to figure this out based this call /rest/greenhopper/1.0/xboard/plan/backlog/data.json?rapidViewId=143
You can see it here. It's not an ideal way to get at this information though. They should make it easier.
https://answers.atlassian.com/questions/142988/greenhoper-sprints-export-to-excel?page=1#144247
Looks like you are looking for issues in the backlog?
From the list of boards, you can get the sprints. With the rapidviewId, you can then get the details of the sprint using this:
I suggest that you use Chromes Network tab (Developer Tools) to listen to AJAX request made by the plugin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's a interesting call which will come us for me in the future (thanks), but that's not what I'm looking for. What I'm looking for is when you click "Create Sprint" and start to fill it up, but don't start it yet. I need to get the list of issues in that sprint.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ill looked more closesly at the result of that backlog/data call and discovered this.
markers:
[
],
So I guess that sprint is ID: 67?
If that's true and knowing that, do you know how I list all the issues in that sprint?
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.
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.