{
"opencollection": "1.0.0",
"info": {
"name": "Atlassian Admin Account Issue Resolutions API",
"version": "1.0.0"
},
"request": {
"auth": {
"type": "bearer",
"token": "{{bearerToken}}"
}
},
"items": [
{
"info": {
"name": "Issue Resolutions",
"type": "folder"
},
"items": [
{
"info": {
"name": "Atlassian Set Default Resolution",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://api.atlassian.com/rest/api/3/resolution/default",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Sets default issue resolution.
**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)."
},
{
"info": {
"name": "Atlassian Move Resolutions",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://api.atlassian.com/rest/api/3/resolution/move",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Changes the order of issue resolutions.
**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)."
},
{
"info": {
"name": "Atlassian Search Resolutions",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.atlassian.com/rest/api/3/resolution/search",
"params": [
{
"name": "startAt",
"value": "",
"type": "query",
"description": "The index of the first item to return in a page of results (page offset)."
},
{
"name": "maxResults",
"value": "",
"type": "query",
"description": "The maximum number of items to return per page."
},
{
"name": "id",
"value": "",
"type": "query",
"description": "The list of resolutions IDs to be filtered out"
},
{
"name": "onlyDefault",
"value": "",
"type": "query",
"description": "When set to true, return default only, when IDs provided, if none of them is default, return empty page. Default value is false"
}
]
},
"docs": "Returns a [paginated](#pagination) 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](#permissions) required:** Permission to access Jira."
},
{
"info": {
"name": "Atlassian Get Resolution",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.atlassian.com/rest/api/3/resolution/:id",
"params": [
{
"name": "id",
"value": "",
"type": "path",
"description": "The ID of the issue resolution value."
}
]
},
"docs": "Returns an issue resolution value.
**[Permissions](#permissions) required:** Permission to access Jira."
},
{
"info": {
"name": "Atlassian Update Resolution",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://api.atlassian.com/rest/api/3/resolution/:id",
"params": [
{
"name": "id",
"value": "",
"type": "path",
"description": "The ID of the issue resolution."
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Updates an issue resolution.
**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)."
},
{
"info": {
"name": "Atlassian Delete Resolution",
"type": "http"
},
"http": {
"method": "DELETE",
"url": "https://api.atlassian.com/rest/api/3/resolution/:id",
"params": [
{
"name": "id",
"value": "",
"type": "path",
"description": "The ID of the issue resolution."
},
{
"name": "replaceWith",
"value": "",
"type": "query",
"description": "The ID of the issue resolution that will replace the currently selected resolution."
}
]
},
"docs": "Deletes an issue resolution.
This operation is [asynchronous](#async). Follow the `location` link in the response to determine the status of the task and use [Get task](#api-rest-api-3-task-taskId-get) to obtain subsequent updates.
**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)."
},
{
"info": {
"name": "Atlassian Get Resolutions",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.atlassian.com/rest/api/3/resolution"
},
"docs": "Returns a list of all issue resolution values.
**[Permissions](#permissions) required:** Permission to access Jira."
},
{
"info": {
"name": "Atlassian Create Resolution",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://api.atlassian.com/rest/api/3/resolution",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Creates an issue resolution.
**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)."
}
]
}
],
"bundled": true
}