Returns a list of all statuses
This request has no parameters.
Returns a list of all Jira issue statuses in JSON format, that are visible to the user.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/status' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Returns paginated list of filtered statuses
array<string>
integer
string
array<integer>
integer
Returns paginated list of statuses.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/status/page' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Returns a full representation of the Status having the given id or name.
string
RequiredReturns a full representation of a Jira issue status in JSON format.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/status/{idOrName}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Rate this page: