Returns a list of all status categories
Forge and OAuth2 apps cannot access this REST resource.
string
string
Returns a list of all Jira issue status categories in JSON format, that are visible to the user.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/statuscategory' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'1
2
3
4
5
6
7
{
"colorName": "blue-gray",
"id": 1,
"key": "new",
"name": "To Do",
"self": "http://localhost:8090/jira/rest/api/2.0/statuscategory/1"
}Returns a full representation of the StatusCategory having the given id or key
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredReturns a full representation of a Jira issue status category in JSON format.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/statuscategory/{idOrKey}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'1
2
3
4
5
6
7
{
"colorName": "blue-gray",
"id": 1,
"key": "new",
"name": "To Do",
"self": "http://localhost:8090/jira/rest/api/2.0/statuscategory/1"
}Rate this page: