Get Screens

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

Returns a paginated list of all screens or those specified by one or more screen IDs.

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 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/screens&quot;,&quot;maxResults&quot;:100,&quot;startAt&quot;:0,&quot;total&quot;:4,&quot;isLast&quot;:true,&quot;values&quot;:[{&quot;id&quot;:1,&quot;name&quot;:&quot;Default Screen&quot;,&quot;description&quot;:&quot;Provides for the update all system fields.&quot;},{&quot;id&quot;:2,&quot;name&quot;:&quot;Workflow Screen&quot;,&quot;description&quot;:&quot;This screen is used in the workflow and enables you to assign issues.&quot;},{&quot;id&quot;:3,&quot;name&quot;:&quot;Resolve Issue Screen&quot;,&quot;description&quot;:&quot;Offers the ability to set resolution, change fix versions, and assign an issue.&quot;}]}