jira_transition_issue
Transition a Jira issue to a different status (e.g., In Progress, Done) by providing its key and a valid transition ID. Obtain the ID via jira_get_transitions first.
Instructions
Transitions a Jira issue to a different workflow status (e.g. 'In Progress', 'Done', 'Blocked') using a specific transition ID. IMPORTANT: You must first retrieve the valid transition ID by calling jira_get_transitions for this specific issue. Official API Doc Link: https://developer.atlassian.net/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-transitions-post
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fields | No | Optional fields to set or update during the transition (e.g., {"resolution": {"name": "Fixed"}} or other custom fields). | |
| issueIdOrKey | Yes | The ID or Key of the issue (e.g. "PROJ-123" or "10000"). | |
| transitionId | Yes | The ID of the transition to trigger (e.g. "31"). This must be obtained by running `jira_get_transitions` first. |