Get Screen Schemes

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

Returns a paginated list of screen schemes.

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

RESPONSES

status: OK

{&quot;self&quot;:&quot;https://your-domain.atlassian.net/rest/api/3/screenscheme?maxResults=25\u0026startAt=0&quot;,&quot;maxResults&quot;:100,&quot;startAt&quot;:0,&quot;total&quot;:2,&quot;isLast&quot;:true,&quot;values&quot;:[{&quot;id&quot;:10010,&quot;name&quot;:&quot;Employee screen scheme&quot;,&quot;description&quot;:&quot;Manage employee data&quot;,&quot;screens&quot;:{&quot;default&quot;:10017,&quot;edit&quot;:10019,&quot;create&quot;:10019,&quot;view&quot;:10020}},{&quot;id&quot;:10032,&quot;name&quot;:&quot;Office screen scheme&quot;,&quot;description&quot;:&quot;Manage office data&quot;,&quot;screens&quot;:{&quot;default&quot;:10020}}]}