Get Issue Type Screen Schemes For Projects

GET {{baseUrl}}/rest/api/3/issuetypescreenscheme/project?startAt=0&maxResults=50&projectId=<long>

Returns a paginated list of issue type screen schemes and, for each issue type screen scheme, a list of the projects that use it.

Only issue type 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.
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;:100,&quot;startAt&quot;:0,&quot;total&quot;:1,&quot;isLast&quot;:true,&quot;values&quot;:[{&quot;issueTypeScreenScheme&quot;:{&quot;id&quot;:&quot;1&quot;,&quot;name&quot;:&quot;Default Issue Type Screen Scheme&quot;,&quot;description&quot;:&quot;The default issue type screen scheme&quot;},&quot;projectIds&quot;:[&quot;10000&quot;,&quot;10001&quot;]}]}