Hello!
I am trying to add a simple status line to my application, as shown in the screenshot.
From what I understand, “statusCategories” are hardcoded, and users can’t modify them. Unfortunately, the documentation does not provide this information or a complete list of statusCategories. As a user of the cloud API, this prevents me from binding to them.
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflow-status-categories/
There is comprehensive documentation for Jira Server available at StatusCategory (Atlassian JIRA 7.6.1 API).
However, for the cloud version, I’ve encountered the following statuses:
[
{
"self": "https://vortex-web-innovations.atlassian.net/rest/api/3/statuscategory/1",
"id": 1,
"key": "undefined",
"colorName": "medium-gray",
"name": "No Category"
},
{
"self": "https://vortex-web-innovations.atlassian.net/rest/api/3/statuscategory/2",
"id": 2,
"key": "new",
"colorName": "blue-gray",
"name": "To Do"
},
{
"self": "https://vortex-web-innovations.atlassian.net/rest/api/3/statuscategory/4",
"id": 4,
"key": "indeterminate",
"colorName": "yellow",
"name": "In Progress"
},
{
"self": "https://vortex-web-innovations.atlassian.net/rest/api/3/statuscategory/3",
"id": 3,
"key": "done",
"colorName": "green",
"name": "Done"
}
]
Is this the final list for all?
Please correct the documentation:
- Clarify that statusCategories are fixed (if it is true).
- Provide a full list of status categories (and correct example responses).
- It would be good: explain where to find the complete list of
colorName
. How can one convert colors likemedium-gray
andblue-gray
to RGB for web usage?
Here https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflow-status-categories/
Good description for server version as example:
Kind regards,
VortexWeb Innovations