• Announcement banner
  • App data policies
  • App migration
  • App properties
  • Application roles
  • Audit records
  • Avatars
  • Classification levels
  • Dashboards
  • Dynamic modules
  • Filter sharing
  • Filters
  • Group and user picker
  • Groups
  • Issue attachments
  • Issue bulk operations
  • Issue comment properties
  • Issue comments
  • Issue custom field configuration (apps)
  • Issue custom field contexts
  • Issue custom field options
  • Issue custom field options (apps)
  • Issue custom field values (apps)
  • Issue field configurations
  • Issue fields
  • Issue navigator settings
  • Issue notification schemes
  • Issue priorities
  • Issue properties
  • Issue resolutions
  • Issue security level
  • Issue security schemes
  • Issue type properties
  • Issue type schemes
  • Issue type screen schemes
  • Issue types
  • Issue votes
  • Issue watchers
  • Issue worklog properties
  • Issue worklogs
  • Issues
  • JQL
  • JQL functions (apps)
  • Jira expressions
  • Jira settings
  • Labels
  • License metrics
  • Myself
  • Permission schemes
  • Permissions
  • Priority schemes
  • Project avatars
  • Project categories
  • Project classification levels
  • Project components
  • Project email
  • Project features
  • Project key and name validation
  • Project permission schemes
  • Project properties
  • Project role actors
  • Project roles
  • Project types
  • Project versions
  • Projects
  • Screen schemes
  • Screen tab fields
  • Screen tabs
  • Screens
  • Server info
  • Service Registry
  • Status
  • Tasks
  • Time tracking
  • UI modifications (apps)
  • User properties
  • Users
  • Webhooks
  • Workflow scheme drafts
  • Workflow scheme project associations
  • Workflow schemes
  • Workflow status categories
  • Workflow statuses
  • Workflow transition properties
  • Workflow transition rules
  • Workflows
Cloud
Jira Cloud platform / Reference / REST API v3

Issue resolutions

Postman Collection
OpenAPI

This resource represents issue resolution values. Use it to obtain a list of all issue resolution values and the details of individual resolution values.

GET

Get resolutionsDeprecated

Returns a list of all issue resolution values.

Permissions required: Permission to access Jira.

Data Security Policy: Exempt from app access rules
Scopes
ClassicRECOMMENDED:read:jira-work
Granular:read:resolution:jira

Connect app scope requiredREAD

Request

This request has no parameters.

Responses

Returned if the request is successful.

application/json

array<Resolution>

GET/rest/api/3/resolution
1 2 3 4 5 6 7 8 9 10 11 12 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/resolution`, { headers: { 'Accept': 'application/json' } }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 [ { "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" } ]
POST

Create resolutionExperimental

Creates an issue resolution.

Permissions required: Administer Jira global permission.

Data Security Policy: Exempt from app access rules
Scopes
manage:jira-configuration

Connect app scope requiredADMIN

Request

Request bodyapplication/json

description

string

name

string

Required
Additional Properties

any

Responses

Returned if the request is successful.

application/json

ResolutionId

The ID of an issue resolution.

POST/rest/api/3/resolution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; var bodyData = `{ "description": "My resolution description", "name": "My new resolution" }`; const response = await api.asUser().requestJira(route`/rest/api/3/resolution`, { method: 'POST', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: bodyData }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
201Response
1 2 3 { "id": "10001" }
PUT

Set default resolutionExperimental

Sets default issue resolution.

Permissions required: Administer Jira global permission.

Data Security Policy: Exempt from app access rules
Scopes
manage:jira-configuration

Connect app scope requiredADMIN

Request

Request bodyapplication/json

id

string

Required

Responses

Returned if the request is successful.

application/json

any

PUT/rest/api/3/resolution/default
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; var bodyData = `{ "id": "3" }`; const response = await api.asUser().requestJira(route`/rest/api/3/resolution/default`, { method: 'PUT', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: bodyData }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
PUT

Move resolutionsExperimental

Changes the order of issue resolutions.

Permissions required: Administer Jira global permission.

Data Security Policy: Exempt from app access rules
Scopes
manage:jira-configuration

Connect app scope requiredADMIN

Request

Request bodyapplication/json

after

string

ids

array<string>

Required
position

string

Responses

Returned if the request is successful.

application/json

any

PUT/rest/api/3/resolution/move
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; var bodyData = `{ "after": "10002", "ids": [ "10000", "10001" ] }`; const response = await api.asUser().requestJira(route`/rest/api/3/resolution/move`, { method: 'PUT', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: bodyData }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
GET

Search resolutionsExperimental

Returns a paginated list of resolutions. The list can contain all resolutions or a subset determined by any combination of these criteria:

  • a list of resolutions IDs.
  • whether the field configuration is a default. This returns resolutions from company-managed (classic) projects only, as there is no concept of default resolutions in team-managed projects.

Permissions required: Permission to access Jira.

Data Security Policy: Exempt from app access rules
Scopes
ClassicRECOMMENDED:read:jira-work
Granular:read:resolution:jira

Connect app scope requiredREAD

Request

Query parameters

startAt

string

maxResults

string

id

array<string>

onlyDefault

boolean

Responses

Returned if the request is successful.

application/json

PageBeanResolutionJsonBean

A page of items.

GET/rest/api/3/resolution/search
1 2 3 4 5 6 7 8 9 10 11 12 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/resolution/search`, { headers: { 'Accept': 'application/json' } }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 { "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" } ] }
GET

Get resolution

Returns an issue resolution value.

Permissions required: Permission to access Jira.

Data Security Policy: Exempt from app access rules
Scopes
ClassicRECOMMENDED:read:jira-work
Granular:read:resolution:jira

Connect app scope requiredREAD

Request

Path parameters

id

string

Required

Responses

Returned if the request is successful.

application/json

Resolution

Details of an issue resolution.

GET/rest/api/3/resolution/{id}
1 2 3 4 5 6 7 8 9 10 11 12 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/resolution/{id}`, { headers: { 'Accept': 'application/json' } }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
1 2 3 4 5 6 { "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" }
PUT

Update resolutionExperimental

Updates an issue resolution.

Permissions required: Administer Jira global permission.

Data Security Policy: Exempt from app access rules
Scopes
manage:jira-configuration

Connect app scope requiredADMIN

Request

Path parameters

id

string

Required

Request bodyapplication/json

description

string

name

string

Required
Additional Properties

any

Responses

Returned if the request is successful.

application/json

any

PUT/rest/api/3/resolution/{id}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; var bodyData = `{ "description": "My updated resolution description", "name": "My updated resolution" }`; const response = await api.asUser().requestJira(route`/rest/api/3/resolution/{id}`, { method: 'PUT', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: bodyData }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
DEL

Delete resolutionExperimental

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.

Data Security Policy: Exempt from app access rules
Scopes
manage:jira-configuration

Connect app scope requiredADMIN

Request

Path parameters

id

string

Required

Query parameters

replaceWith

string

Required

Responses

Returned if the request is successful.

application/json

TaskProgressBeanObject

Details about a task.

DEL/rest/api/3/resolution/{id}
1 2 3 4 5 6 7 8 9 10 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/3/resolution/{id}?replaceWith={replaceWith}`, { method: 'DELETE' }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.text());
303Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 { "description": "<string>", "elapsedRuntime": 48, "finished": 49, "id": "<string>", "lastUpdate": 62, "message": "<string>", "progress": 51, "self": "<string>", "started": 48, "status": "ENQUEUED", "submitted": 50, "submittedBy": 42 }

Rate this page: