Get all issue type schemes
GET
/rest/api/3/issuetypescheme
Issue type schemes
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://jira.local:8080/jira/rest//rest/api/3/issuetypescheme'
Response Response Example
200 - Success
{
"maxResults": 100,
"startAt": 0,
"total": 3,
"isLast": true,
"values": [
{
"id": "10000",
"name": "Default Issue Type Scheme",
"description": "Default issue type scheme is the list of global issue types. All newly created issue types will automatically be added to this scheme.",
"defaultIssueTypeId": "10003",
"isDefault": true
},
{
"id": "10001",
"name": "SUP: Kanban Issue Type Scheme",
"description": "A collection of issue types suited to use in a kanban style project.",
"projects": {
"maxResults": 100,
"startAt": 0,
"total": 1,
"isLast": true,
"values": [
{
"self": "project/EX",
"id": "10000",
"key": "EX",
"name": "Example",
"projectTypeKey": "ProjectTypeKey{key='software'}",
"simplified": false,
"avatarUrls": {
"48x48": "secure/projectavatar?size=large&pid=10000",
"24x24": "secure/projectavatar?size=small&pid=10000",
"16x16": "secure/projectavatar?size=xsmall&pid=10000",
"32x32": "secure/projectavatar?size=medium&pid=10000"
},
"projectCategory": {
"id": "10000",
"description": "Project category description",
"name": "A project category"
}
}
]
}
},
{
"id": "10002",
"name": "HR: Scrum issue type scheme",
"description": "",
"defaultIssueTypeId": "10004",
"issueTypes": {
"maxResults": 100,
"startAt": 0,
"total": 1,
"isLast": true,
"values": [
{
"id": "1000L",
"description": "Improvement Issue Type",
"iconUrl": "www.example.com",
"name": "Improvements",
"subtask": true,
"hierarchyLevel": -1
}
]
}
}
]
}
Request
Query Params
startAt
integerÂ
optional
maxResults
integerÂ
optional
id
array[string]
optional
id=10000&id=10001
.orderBy
stringÂ
optional
name
Sorts by issue type scheme name.id
Sorts by issue type scheme ID.expand
stringÂ
optional
projects
For each issue type schemes, returns information about the projects the issue type scheme is assigned to.issueTypes
For each issue type schemes, returns information about the issueTypes the issue type scheme have.queryString
stringÂ
optional
Responses
Modified at 2023-07-13 03:27:27