# uip rpa list-workflow-examples

> `uip rpa list-workflow-examples` searches the curated catalog of RPA workflow examples by service tag — `confluence`, `jira`, `salesforce`, `outlook`, `gmail`, `slack`, and so on. Each match comes with a key that [`uip rpa get-workflow-example`](./uip-rpa-get-workflow-example.md) can resolve into the actual XAML. Multiple tags combine with AND logic, so adding more tags narrows the result set.

`uip rpa list-workflow-examples` searches the curated catalog of RPA workflow examples by service tag — `confluence`, `jira`, `salesforce`, `outlook`, `gmail`, `slack`, and so on. Each match comes with a key that [`uip rpa get-workflow-example`](./uip-rpa-get-workflow-example.md) can resolve into the actual XAML. Multiple tags combine with AND logic, so adding more tags narrows the result set.

The catalog is resolved through Studio, so the verb requires a Windows runner.

## Synopsis

```
uip rpa list-workflow-examples --tags <array> [--prefix <string>] [--limit <integer>]
```

## Options

| Flag | Description |
|---|---|
| `--tags <array>` | Service tags to filter by, lowercase, e.g. `["salesforce", "outlook"]`. More tags narrow results (AND logic). |
| `--prefix <string>` | Optional path prefix to restrict examples by location, e.g. `document-processing/` or `web-api-automation/`. |
| `--limit <integer>` | Maximum number of examples to return. Default: `10`, max `100`. |

For the complete option list on your installed tool version, run:

```bash
uip rpa list-workflow-examples --help
```

## Examples

```bash
# All examples tagged "confluence"
uip rpa list-workflow-examples --tags '["confluence"]'

# Narrow to examples that touch both Salesforce and Outlook
uip rpa list-workflow-examples --tags '["salesforce", "outlook"]' --limit 25

# Browse only the web-api-automation folder
uip rpa list-workflow-examples --tags '["web"]' --prefix "web-api-automation/"
```

## Related

- [`uip rpa get-workflow-example`](./uip-rpa-get-workflow-example.md) — fetch the XAML for a key returned here.

## See also

- [RPA tool overview](./uip-rpa.md)
- [Global options](./global-options.md)
- [Exit codes](./exit-codes.md)
