Skip to main content
FuseFuse
IntegrationsJiraActions

List Jira issue transitions

List available transitions for a Jira issue.

Agent markdown

issues.transitions.list · Jira · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • read:jira-work
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
issue_id_or_keystringYesminLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
transitionsarray<object>YesmaxItems 100
transitions[]objectYesadditionalProperties false
transitions[].idstringYesminLength 1; maxLength 64
transitions[].namestringYesmaxLength 255
transitions[].toobjectNoadditionalProperties false
transitions[].to.idstringNominLength 1; maxLength 64
transitions[].to.namestringNomaxLength 128
transitions[].to.category_keystringNomaxLength 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"
  ]
}