ChangeIssueStatus
Performs a workflow status transition on a Jira issue, such as moving from 'To Do' to 'In Progress'.
Stored Procedure Specific Information
In order to find a list of the possible TransitionIds, click the Settings button (Jira Administration) -> Issues -> Workflows and then click the View button of your project's workflow. After that, select Text of Diagram, and the available Transitions with their Ids will be listed. Use the Id inside the parentheses next to the Transition name as the TransitionId parameter.
Input
| Name | Type | Required | Description |
| IssueId | String | False | The unique identifier of the issue to be transitioned. Required if IssueKey is not specified. |
| IssueKey | String | False | The human-readable key of the issue to be transitioned, such as 'PROJ-123'. Required if IssueId is not specified. |
| TransitionId | String | True | The unique identifier of the workflow transition to be applied to the issue, corresponding to a specific status change. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the status transition was successfully executed for the specified issue. |