Internal
Create a new instance of the service.
Creates an issue resolution.
Permissions required: Administer Jira global permission.
Returned if the request is successful.
example:
{
"id": "10001"
}
Deletes an issue resolution.
This operation is asynchronous. Follow the location
link in the
response to determine the status of the task and use Get
task to obtain subsequent updates.
Permissions required: Administer Jira global permission.
The ID of the issue resolution.
The ID of the issue resolution that will replace the currently selected resolution.
Returns an issue resolution value.
Permissions required: Permission to access Jira.
The ID of the issue resolution value.
Returned if the request is successful.
example:
{
"description": "A fix for this issue is checked into the tree and tested.",
"id": "10000",
"name": "Fixed",
"self": "https://your-domain.atlassian.net/rest/api/3/resolution/1"
}
Returns a list of all issue resolution values.
Permissions required: Permission to access Jira.
Returned if the request is successful.
example:
[
{
"description": "A fix for this issue is checked into the tree and tested.",
"id": "10000",
"name": "Fixed",
"self": "https://your-domain.atlassian.net/rest/api/3/resolution/1"
},
{
"description": "This is what it is supposed to do.",
"id": "10001",
"name": "Works as designed",
"self": "https://your-domain.atlassian.net/rest/api/3/resolution/3"
}
]
Changes the order of issue resolutions.
Permissions required: Administer Jira global permission.
Returned if the request is successful.
Returns a paginated list of resolutions. The list can contain all resolutions or a subset determined by any combination of these criteria:
Permissions required: Permission to access Jira.
Optional
id?: string[]The list of resolutions IDs to be filtered out
Optional
maxThe maximum number of items to return per page.
Optional
onlyWhen set to true, return default only, when IDs provided, if none of them is default, return empty page. Default value is false
Optional
startThe index of the first item to return in a page of results (page offset).
Returned if the request is successful.
example:
{
"isLast": true,
"maxResults": 50,
"startAt": 0,
"total": 1,
"values": [
{
"description": "This is what it is supposed to do.",
"id": "10001",
"isDefault": true,
"name": "Works as designed"
}
]
}
Sets default issue resolution.
Permissions required: Administer Jira global permission.
Returned if the request is successful.
Updates an issue resolution.
Permissions required: Administer Jira global permission.
The ID of the issue resolution.
Returned if the request is successful.
Protected
Static
initialize
This resource represents issue resolution values. Use it to obtain a list of all issue resolution values and the details of individual resolution values.
See
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-resolutions