Get Issue Type Schemes For Projects

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

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

Only issue type 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 project IDs, provide an ampersand-separated list. For example, projectId=10000&amp;projectId=10001.

RESPONSES

status: OK

{&quot;maxResults&quot;:100,&quot;startAt&quot;:0,&quot;total&quot;:3,&quot;isLast&quot;:true,&quot;values&quot;:[{&quot;issueTypeScheme&quot;:{&quot;id&quot;:&quot;10000&quot;,&quot;name&quot;:&quot;Default Issue Type Scheme&quot;,&quot;description&quot;:&quot;Default issue type scheme is the list of global issue types. All newly created issue types will automatically be added to this scheme.&quot;,&quot;defaultIssueTypeId&quot;:&quot;10003&quot;,&quot;isDefault&quot;:true},&quot;projectIds&quot;:[&quot;10000&quot;,&quot;10001&quot;]},{&quot;issueTypeScheme&quot;:{&quot;id&quot;:&quot;10001&quot;,&quot;name&quot;:&quot;SUP: Kanban Issue Type Scheme&quot;,&quot;description&quot;:&quot;A collection of issue types suited to use in a kanban style project.&quot;},&quot;projectIds&quot;:[&quot;10002&quot;]},{&quot;issueTypeScheme&quot;:{&quot;id&quot;:&quot;10002&quot;,&quot;name&quot;:&quot;HR: Scrum issue type scheme&quot;,&quot;description&quot;:&quot;&quot;,&quot;defaultIssueTypeId&quot;:&quot;10004&quot;},&quot;projectIds&quot;:[&quot;10003&quot;,&quot;10004&quot;,&quot;10005&quot;]}]}