Server
Jira Data Center / Reference / REST API
GET

Get all status categories

Returns a list of all status categories

Request

Query parameters

request

string

uriInfo

string

Responses

Returns a list of all Jira issue status categories in JSON format, that are visible to the user.

application/json

StatusCategoryJsonBean
GET/api/2/statuscategory
1 2 3 4 curl --request GET \ --url 'http://{baseurl}/rest/api/2/statuscategory' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json'
GET

Get status category by ID or key

Returns a full representation of the StatusCategory having the given id or key

Request

Path parameters

idOrKey

string

Required

Responses

Returns a full representation of a Jira issue status category in JSON format.

application/json

StatusCategoryJsonBean
GET/api/2/statuscategory/{idOrKey}
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'

Rate this page: