Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi
We have created a custom worklog application which currently shows all tasks that have a FixVersion set and are not completed. This way we get a list of things to work on in the current Sprint.
However we would like to adopt the new Agile Board which uses sprint IDs instead.
I have found out that i can easily Query using the JQL and the "[sprint]" column however i need to know which sprint id iam searching for.
How do i get the ID of the latest sprint ?
How about using the REST api of GreenHopper /sprints/{rapidViewId}, fetch the list and find which is the latest one?
Easiest way i have found to do this
Search issues
select the sprint you want
Switch to advanced search and you get the ID
This would only be good if you had very few..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome Thanks Antonio.. I was able to update more than 50 Issues
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you're using Chrome, you can go to the "Work" page for the sprint. Then under the board name where it says "Sprint: Sprint XYZ", right click "Sprint XYZ" and choose "Inspect Element".
This will show you some source that looks like this:
<dd data-sprint-id="2" class="ghx-sprint js-sprintfilter ghx-solo"><a class="ghx-name js-toggle-sprint" role="button">Sprint 13</a><a class="ghx-trigger js-sprint-details" role="button"><span class="ghx-icon ghx-icon-cogdrop"></span></a></dd>
The value for data-sprint-id is your sprint id.
Another tip that may be useful is the JQL query "Sprint in openSprints()".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This answer really saved my day. Thanks :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Better answer from Antonio DeJesus below. Sorry I can't delete my old answer
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you are looking for the current sprint ID
click "Boards"
select the board you want to get the sprint ID from
open any issue on the boards "Active sprint" page
In the "Agile" section on the issue page right click on the sprint and choose "open link in new tab"
You will see the sprint ID in the url of the new tab
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Someone provided a more efficient method in response to a similar question elsewhere. It's still a bit klunky, but more convenient than reviewing source HTML.
Move from the Work board to the Report Board. Check out the resulting URL string; the Sprint ID is in there. For example, mine looks like this:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Works like a charm
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.