Returns a list of all resolutions.
Forge and OAuth2 apps cannot access this REST resource.
This request has no parameters.
Returns a list of Jira issue resolutions.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/resolution' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'1
2
3
4
5
6
7
{
"description": "Fixed",
"iconUrl": "http://www.example.com/jira/images/icons/statuses/resolved.png",
"id": "1",
"name": "Fixed",
"self": "http://www.example.com/jira/rest/api/2/resolution/1"
}Returns paginated list of filtered resolutions.
Forge and OAuth2 apps cannot access this REST resource.
integer
string
integer
Returns paginated list of resolutions.
ResolutionBean
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/resolution/page' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'Returns a resolution.
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredReturns a Jira issue resolution.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/resolution/{id}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'1
2
3
4
5
6
7
{
"description": "Fixed",
"iconUrl": "http://www.example.com/jira/images/icons/statuses/resolved.png",
"id": "1",
"name": "Fixed",
"self": "http://www.example.com/jira/rest/api/2/resolution/1"
}Rate this page: