Get All Field Configuration Schemes

GET {{baseUrl}}/rest/api/3/fieldconfigurationscheme?startAt=0&maxResults=50&id=<long>

Returns a paginated list of field configuration schemes.

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.
idstringThe list of field configuration scheme IDs. To include multiple IDs, provide an ampersand-separated list. For example, id=10000&amp;id=10001.

RESPONSES

status: OK

{&quot;maxResults&quot;:10,&quot;startAt&quot;:0,&quot;total&quot;:3,&quot;isLast&quot;:true,&quot;values&quot;:[{&quot;id&quot;:&quot;10000&quot;,&quot;name&quot;:&quot;Field Configuration Scheme for Bugs&quot;,&quot;description&quot;:&quot;This field configuration scheme is for bugs only.&quot;},{&quot;id&quot;:&quot;10001&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;id&quot;:&quot;10002&quot;,&quot;name&quot;:&quot;Field Configuration Scheme for Epics&quot;,&quot;description&quot;:&quot;Use this one for Epic issue type.&quot;}]}