---
title: "admGetAllWorkflowSchemes"
canonical: "https://support.appfire.com/space/PSJC/517865958/admGetAllWorkflowSchemes"
format: markdown
---
> Macro (aura-html)


## Description

> Macro (excerpt)
> 
> Returns all workflow schemes.

Returns all workflow schemes.

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | admGetAllWorkflowSchemes() | **Package** | adm |
| **Alias** |  | **Pkg Usage** | allWorkflowSchemes() |

## Return Type

**[JWorkflowScheme []](https://appfire.atlassian.net/wiki/spaces/PSJC/pages/435028065)**

Returns all workflow schemes.

## Example

```javascript
JWorkflowScheme [] allWorkflowSchemes = admGetAllWorkflowSchemes();
for(JWorkflowScheme jws in allWorkflowSchemes) {
    runnerLog("Id: " + jws.id);
    runnerLog("Name: " + jws.name);
}
```

## See also

> Macro (contentbylabel)