Get issue type screen schemes
GET
/rest/api/3/issuetypescreenscheme
Issue type screen schemes
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://jira.local:8080/jira/rest//rest/api/3/issuetypescreenscheme'
Response Response Example
200 - Success
{
"maxResults": 100,
"startAt": 0,
"total": 2,
"isLast": true,
"values": [
{
"id": "1",
"name": "Default Issue Type Screen Scheme",
"description": "The default issue type screen scheme"
},
{
"id": "10000",
"name": "Office issue type screen scheme",
"description": "Managing office projects",
"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"
}
}
]
}
}
]
}
Request
Query Params
startAt
integerÂ
optional
maxResults
integerÂ
optional
id
array[string]
optional
id=10000&id=10001
.queryString
stringÂ
optional
orderBy
stringÂ
optional
name
Sorts by issue type screen scheme name.id
Sorts by issue type screen scheme ID.expand
stringÂ
optional
projects
that, for each issue type screen schemes, returns information about the projects the issue type screen scheme is assigned to.Responses
Modified at 2023-07-13 03:27:27