Returns a list of all statuses
Forge and OAuth2 apps cannot access this REST resource.
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'1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"description": "The issue is currently being worked on.",
"iconUrl": "http://localhost:8090/jira/images/icons/progress.gif",
"id": "10000",
"name": "In Progress",
"self": "http://localhost:8090/jira/rest/api/2.0/status/10000",
"statusCategory": {
"colorName": "blue-gray",
"id": 1,
"key": "new",
"name": "To Do",
"self": "http://localhost:8090/jira/rest/api/2.0/statuscategory/1"
},
"statusColor": "green"
}Returns paginated list of filtered statuses
Forge and OAuth2 apps cannot access this REST resource.
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'1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"description": "The issue is currently being worked on.",
"iconUrl": "http://localhost:8090/jira/images/icons/progress.gif",
"id": "10000",
"name": "In Progress",
"self": "http://localhost:8090/jira/rest/api/2.0/status/10000",
"statusCategory": {
"colorName": "blue-gray",
"id": 1,
"key": "new",
"name": "To Do",
"self": "http://localhost:8090/jira/rest/api/2.0/statuscategory/1"
},
"statusColor": "green"
}Returns a full representation of the Status having the given id or name.
Forge and OAuth2 apps cannot access this REST resource.
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'1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"description": "The issue is currently being worked on.",
"iconUrl": "http://localhost:8090/jira/images/icons/progress.gif",
"id": "10000",
"name": "In Progress",
"self": "http://localhost:8090/jira/rest/api/2.0/status/10000",
"statusCategory": {
"colorName": "blue-gray",
"id": 1,
"key": "new",
"name": "To Do",
"self": "http://localhost:8090/jira/rest/api/2.0/statuscategory/1"
},
"statusColor": "green"
}Rate this page: