uipath-cli
latest
false
- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-workflow-examples
- pack
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- Migration
- Reference & support
UiPath CLI user guide
Last updated May 7, 2026
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 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>]
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:
uip rpa list-workflow-examples --help
uip rpa list-workflow-examples --help
Examples
# 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/"
# 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— fetch the XAML for a key returned here.