Get All Issue Type Schemes

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

Returns a paginated list of issue type schemes.

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

RESPONSES

status: OK

{&quot;maxResults&quot;:100,&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;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;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;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;}]}