I'm trying to get the number of an active sprint onto a dashboard using JIRA agile api but there are multiple active sprints on the board and I'm only interested in the sprint named #{SomeNumber}
. (the # is what I'm looking for)
I tried to add a query parameter to my request -
jira.acme.com/rest/agile/1.0/board/42/sprint?name=#69
- but it seems to be ignored and JIRA will answer with all existing sprints on that board.
However, doing the same thing with boards works and I can properly query sprints by state.
Am I doing something wrong or is querying sprints like this just not intended?
edit: I should add, that the doesn't seem to be caused by the # as querying with words that occur in sprint names doesn't work either.