---
title: "Search resolutions"
method: GET
path: "/rest/api/3/resolution/search"
tags: ["Issue resolutions"]
---

# Search resolutions

`GET /rest/api/3/resolution/search`

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.

## Query parameters

- `startAt` string
- `maxResults` string
- `id` string[]
- `onlyDefault` boolean

## Response `200`

Returned if the request is successful.

- PageBeanResolutionJsonBean — A page of items.
  - `isLast` boolean — Whether this is the last page.
  - `maxResults` integer — The maximum number of items that could be returned.
  - `nextPage` string, uri — If there is another page of results, the URL of the next page.
  - `self` string, uri — The URL of the page.
  - `startAt` integer — The index of the first item returned.
  - `total` integer — The number of items returned.
  - `values` ResolutionJsonBean[] — The list of items.
    - `default` boolean
    - `description` string
    - `iconUrl` string
    - `id` string
    - `name` string
    - `self` string

## Other responses

- `401` — Returned if the authentication credentials are incorrect or missing.

---

[API](https://skmtc.net/atlassian/apis/the-jira-cloud-platform-rest-api-2.md) · [All operations](https://skmtc.net/atlassian/apis/the-jira-cloud-platform-rest-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/atlassian/the-jira-cloud-platform-rest-api-2/versions/5a51740d7ab3/schema)
