---
title: "getAllWorkflowTransitions"
canonical: "https://support.appfire.com/space/PSJ/15483435/getAllWorkflowTransitions"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | getAllWorkflowTransitions(workflowName) | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Description

> Macro (excerpt)
> 
> Retrieves a list of workflow transition actions.

Retrieves a list of workflow transition actions.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| workflowName | string | Yes | The name of the workflow. |

## Return Type

**[JWorkflowAction []](https://appfire.atlassian.net/wiki/spaces/PSJ/pages/15487117)**

Returns a list of workflow transitions representing a single workflow.

## Example

```
string workflowName = "Software Simplified Workflow for Project TEST";
JWorkflowAction[] actions = getAllWorkflowTransitions(workflowName);
return actions;
```

## See also

> Macro (contentbylabel)