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

KeyDatatypeRequiredDescription
startAtnumberThe index of the first item to return in a page of results (page offset).
maxResultsnumberThe maximum number of items to return per page.
projectIdstring(Required) The list of project IDs. To include multiple projects, separate IDs with ampersand: projectId=10000&amp;projectId=10001.

RESPONSES

status: OK

{&quot;maxResults&quot;:50,&quot;startAt&quot;:0,&quot;total&quot;:5,&quot;isLast&quot;:true,&quot;values&quot;:[{&quot;projectIds&quot;:[&quot;10&quot;,&quot;11&quot;]},{&quot;fieldConfigurationScheme&quot;:{&quot;id&quot;:&quot;10002&quot;,&quot;name&quot;:&quot;Field Configuration Scheme for software related projects&quot;,&quot;description&quot;:&quot;We can use this one for software projects.&quot;},&quot;projectIds&quot;:[&quot;12&quot;,&quot;13&quot;,&quot;14&quot;]}]}