provider Field schemes GET
/rest/api/3/config/fieldschemes/{id}/projects @utdk/jira
/rest/api/3/config/fieldschemes/{id}/projects Search field scheme projects
REST Endpoint for searching for projects belonging to a given field association scheme
**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg).
- startAt query
- The starting index of the returned projects. Base index: 0.
- integer
- maxResults query
- The maximum number of projects to return per page, maximum allowed value is 100.
- integer
- projectId query
- The project Ids to filter by, if empty then all projects belonging to a field association scheme will be returned
- array
- id path required
- The scheme id to search for associated projects
- integer
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.searchfieldassociationschemeprojects({
"startAt": 0,
"maxResults": 50
})