Hi,
I need to use the REST api to query greenhopper to get a list of all sprints. I would much appreciate it if someone please post or point me to an example.
curl -u <username>:<password> -X GET -H "Content-Type: application/json" 'https://<site>/rest/greenhopper/1.0/sprintquery/<rapidBoardId>?includeFutureSprints=true&includeHistoricSprints=false'
did the job for me.
As Shaun said, you need to find out the 'rapidBoardId' with a GET request to https://<url>/rest/greenhopper/1.0/rapidviews/list:
curl -u <username>:<password> -X GET -H "Content-Type: application/json" 'https://<site>/rest/greenhopper/1.0/rapidviews/list'
See also the convenient browser:
There is no REST endpoint to do this, you can only query the sprints that are visibile for a particular Rapid Board.
The endpoint for that is: https://<url>/rest/greenhopper/1.0/sprints/{rapidBoardId}
You can enumerate the Rapid Boards at another REST endpoint: https://<url>/rest/greenhopper/1.0/rapidviews/list
Thanks,
Shaun
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can create an export from table AO_60DB71_SPRINT where ID is the Sprint ID, RAPID_VIEW_ID the Scrum Board ID and NAME the Sprint Name
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.
I don't have further details at this point.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Planned sprints will be able to be queried in the same way in a release coming very soon.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This are very good news. Can you explain this a little bit further? Will the planned sprints be listed in the regular sprint list queried by
sprints/{rapidViewId}
or will there be another rest url to get them?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It seems this was forgotten? :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would like to pick up that topic. The mentioned endpoint https://<url>/rest/greenhopper/1.0/sprints/{rapidBoardId} unfortunately does not include sprints that are not yet started, only the completed and running ones. Is there another way to get also the sprints that are only planned?
Thanks!
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.