Get Issue Type Screen Schemes For Projects
GET {{baseUrl}}/rest/api/3/issuetypescreenscheme/project?startAt=0&maxResults=50&projectId=<long>
Returns a paginated list of issue type screen schemes and, for each issue type screen scheme, a list of the projects that use it.
Only issue type screen schemes used in classic projects are returned.
Permissions required: Administer Jira global permission.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
startAt | number | The index of the first item to return in a page of results (page offset). | |
maxResults | number | The maximum number of items to return per page. | |
projectId | string | (Required) The list of project IDs. To include multiple projects, separate IDs with ampersand: projectId=10000&projectId=10001 . |
RESPONSES
status: OK
{"maxResults":100,"startAt":0,"total":1,"isLast":true,"values":[{"issueTypeScreenScheme":{"id":"1","name":"Default Issue Type Screen Scheme","description":"The default issue type screen scheme"},"projectIds":["10000","10001"]}]}