Get Field Configuration Schemes For Projects
GET {{baseUrl}}/rest/api/3/fieldconfigurationscheme/project?startAt=0&maxResults=50&projectId=<long>
Returns a paginated list of field configuration schemes and, for each scheme, a list of the projects that use it.
The list is sorted by field configuration scheme ID. The first item contains the list of project IDs assigned to the default field configuration scheme.
Only field configuration schemes used in classic projects are returned.
Permissions required: Administer Jira global permission.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
startAt | number | The index of the first item to return in a page of results (page offset). | |
maxResults | number | The maximum number of items to return per page. | |
projectId | string | (Required) The list of project IDs. To include multiple projects, separate IDs with ampersand: projectId=10000&projectId=10001 . |
RESPONSES
status: OK
{"maxResults":50,"startAt":0,"total":5,"isLast":true,"values":[{"projectIds":["10","11"]},{"fieldConfigurationScheme":{"id":"10002","name":"Field Configuration Scheme for software related projects","description":"We can use this one for software projects."},"projectIds":["12","13","14"]}]}