How to find status name by its id?

Neeraj Tiwari August 5, 2016

Hi,

I am trying to use the Project Configurator addon and it is throwing the attached error.

I need to know how to find the status name from the status id given in the attached screenshot. After getting the status name, I will then try adding that status in the system and see if it solves the issue when I try to export the project. 

 

2 answers

2 votes
Rob Horan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 5, 2016
  • Go to Administration > Issues > VIew Statuses
  • Edit a Status
  • Get the ID from the URL
Brian Walsh May 10, 2017

If you click Edit, a modal pops up, and the URL does not change.  Any better way to do this?

Like # people like this
Tim Breen June 6, 2018

Right click and open the link in a new tab, that will show the ID in the URL.

Like # people like this
bahjat murrad January 21, 2021

This doesn't work on the latest version of JIRA, thanks to there unnecessary change to the UI

Maximilian Ruehle February 11, 2021

Solution from Tim Breen is still working.

Like Tim Breen likes this
0 votes
AnnWorley
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 10, 2017

If you have access to the JIRA database you may run this query:

select pname, id from issuestatus where id = '10079'

That syntax worked on my PostgreSQL db.

Saurabh Gupta January 30, 2019

How can we get the value programmatically?

Suggest an answer

Log in or Sign up to answer