Skip to content

pacx workflow list

github-actions[bot] edited this page Nov 13, 2025 · 2 revisions

Returns a list of workflows (Power Automate Flow)

Aliases

pacx flow list

Usage

This command can be used to return a list of the workflows (Power Automate Flows) in the current environment.

Calling the command without any argument will return all the workflows in the current default solution.

pacx workflow list

You can filter the returned workflows by specifying a search query using the

--name argument. This will return all the workflows that contains the specified text in their name.```Powershell

List all workflows that contains 'Approval' in their name

pacx workflow list --name "Approval"

You can also filter the returned workflows by specifying the solution that contains the workflows using the 

`--solution` argument. If not provided, the default solution is used. You can pass * to avoid filtering by solution.```Powershell
# List all workflows in a given solution
pacx workflow list --solution "My Solution Name"

# List all workflows in all solutions
pacx workflow list --solution *

Finally, you can filter the returned workflows by specifying their category using the

--category argument.```Powershell

List all Power Automate Flows

pacx workflow list --category ModernFlow

## Arguments

| Long Name  | Short Name | Required? | Description                                                                                                                               | Default value | Valid values                                                                                 |
|------------|------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------------|---------------|----------------------------------------------------------------------------------------------|
| `name`     | `n`        | N         | The unique name (or part of it) of the workflow to retrieve                                                                               | -             | String                                                                                       |
| `category` | `c`        | N         | The category of the workflows to return.                                                                                                  | -             | Worfklow, Dialog, BusinessRule, Action, BusinessProcessFlow, ModernFlow, DesktopFlow, AIFlow |
| `solution` | `s`        | N         | The solution that contains the workflows to return. If not provided, the default solution is used. Pass * to avoid filtering by solution. | -             | String                                                                                       |