get_jira_transitions
Retrieve available workflow transitions for a Jira issue by specifying its issue key, enabling users to view and manage next steps in the issue's lifecycle with ease.
Instructions
Get available workflow transitions for a Jira issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_key | Yes | The issue key (e.g., PROJECT-123) |
Input Schema (JSON Schema)
{
"properties": {
"issue_key": {
"description": "The issue key (e.g., PROJECT-123)",
"type": "string"
}
},
"required": [
"issue_key"
],
"type": "object"
}