Returns a list of all status categories
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'
Returns a full representation of the StatusCategory having the given id or key
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'
Rate this page: