Returns a paginated list of issue type screen schemes.Only issue type screen schemes used in classic projects are returned.Permissions required:Administer Jiraglobal permission.
Request Request Example
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
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
The index of the first item to return in a page of results (page offset).
maxResults
integer
optional
The maximum number of items to return per page.
id
array[string]
optional
The list of issue type screen scheme IDs. To include multiple IDs, provide an ampersand-separated list. For example, id=10000&id=10001.
queryString
string
optional
String used to perform a case-insensitive partial match with issue type screen scheme name.
Use expand to include additional information in the response. This parameter accepts projects that, for each issue type screen schemes, returns information about the projects the issue type screen scheme is assigned to.
Responses
🟢200Returned if the request is successful.
application/json
Body
A page of items.
isLast
boolean
read-onlyoptional
Whether this is the last page.
maxResults
integer<int32>
read-onlyoptional
The maximum number of items that could be returned.
nextPage
string<uri>
read-onlyoptional
If there is another page of results, the URL of the next page.
self
string<uri>
read-onlyoptional
The URL of the page.
startAt
integer<int64>
read-onlyoptional
The index of the first item returned.
total
integer<int64>
read-onlyoptional
The number of items returned.
values
array[object (IssueTypeScreenScheme) {3}]
read-onlyoptional
The list of items.
description
string
optional
The description of the issue type screen scheme.
id
string
required
The ID of the issue type screen scheme.
name
string
required
The name of the issue type screen scheme.
🟠400Returned if the request is not valid.
🟠401Returned if the authentication credentials are incorrect or missing.
🟠403Returned if the user does not have the required permissions.