> ## 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

Get a list of the transitions possible for this issue by the current user, along with fields that are required and their types.

## Parameters

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

## Example Output

```json theme={"dark"}
{
	"expand": "transitions",
	"transitions": [
		{
			"id": "2",
			"name": "Close Issue",
			"opsbarSequence": 10,
			"to": {
				"self": "http://localhost:8090/jira/rest/api/2.0/status/10000",
				"description": "The issue is currently being worked on.",
				"iconUrl": "http://localhost:8090/jira/images/icons/progress.gif",
				"name": "In Progress",
				"id": "10000",
				"statusCategory": {
					"self": "http://localhost:8090/jira/rest/api/2.0/statuscategory/1",
					"id": 1,
					"key": "in-flight",
					"colorName": "yellow",
					"name": "In Progress"
				}
			},
			"fields": {
				"summary": {
					"required": false,
					"schema": {
						"type": "array",
						"items": "option",
						"custom": "com.atlassian.jira.plugin.system.customfieldtypes:multiselect",
						"customId": 10001
					},
					"name": "My Multi Select",
					"fieldId": "customfield_10000",
					"hasDefaultValue": false,
					"operations": [
						"set",
						"add"
					],
					"allowedValues": [
						"red",
						"blue",
						"default value"
					]
				}
			}
		},
		{
			"id": "711",
			"name": "QA Review",
			"opsbarSequence": 20,
			"to": {
				"self": "http://localhost:8090/jira/rest/api/2.0/status/5",
				"description": "The issue is closed.",
				"iconUrl": "http://localhost:8090/jira/images/icons/closed.gif",
				"name": "Closed",
				"id": "5",
				"statusCategory": {
					"self": "http://localhost:8090/jira/rest/api/2.0/statuscategory/9",
					"id": 9,
					"key": "completed",
					"colorName": "green"
				}
			},
			"fields": {
				"summary": {
					"required": false,
					"schema": {
						"type": "array",
						"items": "option",
						"custom": "com.atlassian.jira.plugin.system.customfieldtypes:multiselect",
						"customId": 10001
					},
					"name": "My Multi Select",
					"fieldId": "customfield_10000",
					"hasDefaultValue": false,
					"operations": [
						"set",
						"add"
					],
					"allowedValues": [
						"red",
						"blue",
						"default value"
					]
				},
				"colour": {
					"required": false,
					"schema": {
						"type": "array",
						"items": "option",
						"custom": "com.atlassian.jira.plugin.system.customfieldtypes:multiselect",
						"customId": 10001
					},
					"name": "My Multi Select",
					"fieldId": "customfield_10000",
					"hasDefaultValue": false,
					"operations": [
						"set",
						"add"
					],
					"allowedValues": [
						"red",
						"blue",
						"default value"
					]
				}
			}
		}
	]
}
```

## Workflow Library Example

[Get Transitions with Jira Data Center and Send Results Via Email](https://library.blinkops.com/workflows/get-transitions-with-jira-data-center-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-data-center-and-send-results-via-email/canvas" />
</div>
