provider Issue resolutions GET
/rest/api/3/resolution/search @utdk/jira
/rest/api/3/resolution/search Search resolutions
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.
- startAt query
- The index of the first item to return in a page of results (page offset).
- string
- maxResults query
- The maximum number of items to return per page.
- string
- id query
- The list of resolutions IDs to be filtered out
- array
- onlyDefault query
- When set to true, return default only, when IDs provided, if none of them is default, return empty page. Default value is false
- boolean
Try it
Authentication
Configure credentials for The Jira Cloud platform REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import jira from '@utdk/jira';
await jira.searchresolutions({
"startAt": "0",
"maxResults": "50",
"onlyDefault": false
})