Where can we find the names for statusCategory in the jira database ?

Neha Sharma February 6, 2020

Hi, 

 

The table dbo.issuestatus contains a column called statusCategoy which has numbers as values. Where can we find the name for the corresponding number values for the statusCategory ?

3 answers

3 votes
Nir Haimov
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 6, 2020

Hi,

i don't think it's exist in the database, but anyway, all you have are 3 options, not hard to remember:

2 = To Do

3 = Done

4 = In Progress

2 votes
Thomas Magny-Garcia
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.
February 6, 2020

Hi @Neha Sharma ,
In fact, there is a way to get this :


GET /rest/api/3/statuscategory

 For more information : https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-statuscategory-get

 

Hope it helps!

0 votes
Perry Tancredi February 1, 2023

Note that the names will differ depending on whether they're retrieved from the API or Webhook: https://jira.atlassian.com/browse/JRACLOUD-68855

API:

  • To Do
  • In Progress
  • Done
  • No Category

Webhook:

  • New
  • In Progress
  • Complete
  • Undefined (?)

Suggest an answer

Log in or Sign up to answer