> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Transitions

Returns either all transitions or a transition that can be performed by the user on an issue, based on the issue's status.

Note, if a request is made for a transition that does not exist or cannot be performed on the issue, given its status, the response will return any empty transitions list.

This operation can be accessed anonymously.

**Permissions required: A list or transition is returned only when the user has:**

* *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue is in.
* If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission to view the issue.

However, if the user does not have the *Transition issues* [ project permission](https://confluence.atlassian.com/x/yodKLg) the response will not list any transitions.

<Note>
  External Documentation

  To learn more, visit the [Jira documentation](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-transitions-get).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter            | Description                                         |
  | -------------------- | --------------------------------------------------- |
  | Issue ID Or Key      | The ID or key of the issue.                         |
  | Transition ID Filter | If specified, only returns the given transition ID. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter                       | Description                                                                                                                                                                                                                                                                                                                                                                                                                       |
  | ------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Expand                          | Use [expand](#expansion) to include additional information about transitions in the response. This parameter accepts `transitions.fields`, which returns information about the fields in the transition screen for each transition. Fields hidden from the screen are not returned. Use this information to populate the `fields` and `update` fields in [Transition issue](#api-rest-api-3-issue-issueIdOrKey-transitions-post). |
  | Include Unavailable Transitions | Whether details of transitions that fail a condition are included in the response.                                                                                                                                                                                                                                                                                                                                                |
  | Skip Remote Only Condition      | Whether transitions with the condition *Hide From User Condition* are included in the response.                                                                                                                                                                                                                                                                                                                                   |
  | Sort By Ops Bar And Status      | Whether the transitions are sorted by ops-bar sequence value first then category order (Todo, In Progress, Done) or only by ops-bar sequence value.                                                                                                                                                                                                                                                                               |
</div>

## Example Output

```json theme={"dark"}
{
	"expand": "<string>",
	"transitions": [
		{
			"id": "<string>",
			"name": "<string>",
			"to": {
				"self": "<string>",
				"description": "<string>",
				"iconUrl": "<string>",
				"name": "<string>",
				"id": "<string>",
				"statusCategory": {
					"self": "<string>",
					"id": 2,
					"key": "<string>",
					"colorName": "<string>",
					"name": "<string>"
				}
			},
			"hasScreen": false,
			"isGlobal": true,
			"isInitial": false,
			"isAvailable": true,
			"isConditional": false,
			"isLooped": false
		},
		{
			"id": "<string>",
			"name": "<string>",
			"to": {
				"self": "<string>",
				"description": "<string>",
				"iconUrl": "<string>",
				"name": "<string>",
				"id": "<string>",
				"statusCategory": {
					"self": "<string>",
					"id": 6,
					"key": "<string>",
					"colorName": "<string>",
					"name": "<string>"
				}
			},
			"hasScreen": false,
			"isGlobal": true,
			"isInitial": false,
			"isAvailable": true,
			"isConditional": false,
			"isLooped": false
		}
	]
}
```

## Workflow Library Example

[Get Transitions with Jira and Send Results Via Email](https://library.blinkops.com/workflows/get-transitions-with-jira-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-transitions-with-jira-and-send-results-via-email/canvas" />
</div>
