provider Priority schemes GET
/rest/api/3/priorityscheme/{schemeId}/projects @utdk/jira
/rest/api/3/priorityscheme/{schemeId}/projects Get projects by priority scheme
Returns a [paginated](#pagination) list of projects by scheme.
**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg).
- 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
- projectId query
- The project IDs to filter by. For example, `projectId=10000&projectId=10001`.
- array
- schemeId path required
- The priority scheme ID.
- string
- query query
- The string to query projects on by name.
- string
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.getprojectsbypriorityscheme({
"startAt": "0",
"maxResults": "50"
})