uipath-cli
latest
false
- 概述
- 开始使用
- 概念
- Using UiPath CLI
- 操作指南
- CI/CD recipes
- 命令参考
- 概述
- 退出代码
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- 创建项目
- 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
- 迁移
- Reference & support
UiPath CLI user guide
上次更新日期 2026年5月7日
uip rpa get-workflow-example downloads the XAML content of a curated workflow example. The verb is the second half of a discover-then-fetch pair: uip rpa list-workflow-examples returns example keys (paths in the example catalog), and this verb resolves a key into the actual XAML you can save into a project.
Studio resolves the example index, so the verb requires a Windows runner.
Synopsis
uip rpa get-workflow-example --key <string>
uip rpa get-workflow-example --key <string>
选项
| 标记 | 描述 |
|---|---|
--key <string> | Blob key/path of the example workflow, as returned by list-workflow-examples. Example: email-automation/add-new-gmail-emails-to-keap-as-contacts.xaml. |
For the complete option list on your installed tool version, run:
uip rpa get-workflow-example --help
uip rpa get-workflow-example --help
示例
# Fetch a specific example XAML by key
uip rpa get-workflow-example \
--key "email-automation/add-new-gmail-emails-to-keap-as-contacts.xaml"
# Pipe the result to a file in your project
uip rpa get-workflow-example \
--key "web-api-automation/post-message-to-slack.xaml" \
--output plain > Workflows/PostToSlack.xaml
# Fetch a specific example XAML by key
uip rpa get-workflow-example \
--key "email-automation/add-new-gmail-emails-to-keap-as-contacts.xaml"
# Pipe the result to a file in your project
uip rpa get-workflow-example \
--key "web-api-automation/post-message-to-slack.xaml" \
--output plain > Workflows/PostToSlack.xaml
Related
uip rpa list-workflow-examples— discover example keys to fetch.