IntegrationsJiraActions
List Jira issue transitions
List available transitions for a Jira issue.
issues.transitions.list · Jira · v1
Details
Scopes
read:jira-workoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
issue_id_or_key | string | Yes | minLength 1; maxLength 64 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
transitions | array<object> | Yes | maxItems 100 |
transitions[] | object | Yes | additionalProperties false |
transitions[].id | string | Yes | minLength 1; maxLength 64 |
transitions[].name | string | Yes | maxLength 255 |
transitions[].to | object | No | additionalProperties false |
transitions[].to.id | string | No | minLength 1; maxLength 64 |
transitions[].to.name | string | No | maxLength 128 |
transitions[].to.category_key | string | No | maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"issue_id_or_key": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"issue_id_or_key"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"transitions": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"maxLength": 255
},
"to": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"maxLength": 128
},
"category_key": {
"type": "string",
"maxLength": 64
}
}
}
},
"required": [
"id",
"name"
]
},
"maxItems": 100
}
},
"required": [
"transitions"
]
}