Nicholas Chu
Nicholas Chu

Reputation: 11

Sort JIRA backlog by ticket# asc/DESC?

I've been absolutely stumped on how to sort our backlog by our ticket#, IE: EX-100, EX-101, EX-1000, EX-2000 etc. Any idea how to do this? I tried via the quick-filters through: project = "Example" ORDER BY key ASC. I'm stumped.

Upvotes: 1

Views: 1131

Answers (1)

dat3450
dat3450

Reputation: 954

If EX is the key of your project, enter this URL for API requests:

https://<yourJIRAurlhere>/rest/api/2/search?jql=project%20%3D%20EX%20ORDER%20BY%20key%20ASC

Sometimes the results don't come back due to %20 not being included.

If you are using the Advanced Search option within JIRA, then the following should work (use the project key instead of the project name):

project = EX ORDER BY key ASC

Upvotes: 1

Related Questions