- Visão geral
- Introdução
- Conceitos
- Using UiPath CLI
- Guias de instruções
- CI/CD recipes
- Referência de comando
- Visão geral
- Códigos de saída
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- criar projeto
- 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
- Migração
- Reference & support
UiPath CLI user guide
uip maestro instance inspects and steers individual process instances — one execution of a published Maestro process. The command name is singular (instance) even though the sidebar entry says instances.
All subcommands require uip login and honor global options. Exit codes follow the standard contract.
Synopsis
uip maestro instance list -f <folder-key> [-l <limit>] [--offset <n>] [--process-key <k>] [--package-id <id>] [--error-code <code>]
uip maestro instance get <instance-id> -f <folder-key>
uip maestro instance pause <instance-id> -f <folder-key> [--comment <text>]
uip maestro instance resume <instance-id> -f <folder-key> [--comment <text>]
uip maestro instance cancel <instance-id> -f <folder-key> [--comment <text>]
uip maestro instance retry <instance-id> -f <folder-key> [--comment <text>]
uip maestro instance migrate <instance-id> <new-version> -f <folder-key> [--comment <text>]
uip maestro instance variables <instance-id> -f <folder-key> [--parent-element-id <id>]
uip maestro instance incidents <instance-id> -f <folder-key>
uip maestro instance asset <instance-id> -f <folder-key>
uip maestro instance cursors <instance-id> -f <folder-key>
uip maestro instance goto <instance-id> <transitions> -f <folder-key>
uip maestro instance element-executions <instance-id> -f <folder-key>
uip maestro instance list -f <folder-key> [-l <limit>] [--offset <n>] [--process-key <k>] [--package-id <id>] [--error-code <code>]
uip maestro instance get <instance-id> -f <folder-key>
uip maestro instance pause <instance-id> -f <folder-key> [--comment <text>]
uip maestro instance resume <instance-id> -f <folder-key> [--comment <text>]
uip maestro instance cancel <instance-id> -f <folder-key> [--comment <text>]
uip maestro instance retry <instance-id> -f <folder-key> [--comment <text>]
uip maestro instance migrate <instance-id> <new-version> -f <folder-key> [--comment <text>]
uip maestro instance variables <instance-id> -f <folder-key> [--parent-element-id <id>]
uip maestro instance incidents <instance-id> -f <folder-key>
uip maestro instance asset <instance-id> -f <folder-key>
uip maestro instance cursors <instance-id> -f <folder-key>
uip maestro instance goto <instance-id> <transitions> -f <folder-key>
uip maestro instance element-executions <instance-id> -f <folder-key>
-f, --folder-key <key> is required on every subcommand.
Common options
-f, --folder-key <key>(required) — folder key (GUID).--comment <text>(operation commands only) — optional comment recorded with the operation. Sent as an empty string if omitted.
Subcomandos
uip maestro instance list
List instances in a folder, scoped to processType=ProcessOrchestration.
Options:
| Opção | Padrão | Description |
|---|---|---|
-l, --limit <n> | DEFAULT_PAGE_SIZE | Number of items to return (1-10000). |
--offset <n> | 0 | Number of items to skip (0-1000000). |
--process-key <k> | — | Filter by process key. |
--package-id <id> | — | Filter by package ID. |
--error-code <code> | — | Filter by error code. |
Data shape: Code: "InstanceList", Data is an array of process-instance objects.
uip maestro instance get
Fetch a single instance by ID. Data shape: Code: "InstanceGet", Data is the process-instance object.
uip maestro instance pause
Pause a running instance. Data shape: Code: "InstancePaused".
uip maestro instance resume
Resume a paused instance. Data shape: Code: "InstanceResumed".
uip maestro instance cancel
Cancel a running instance. Data shape: Code: "InstanceCanceled".
uip maestro instance retry
Retry a faulted instance. Data shape: Code: "InstanceRetried".
uip maestro instance migrate
Migrate an instance to a different package version.
Arguments: <instance-id>, <new-version> (target package version).
Data shape: Code: "InstanceMigrated".
uip maestro instance variables
Get variables for an instance.
Options: --parent-element-id <id> — filter variables by parent element.
Data shape: Code: "InstanceVariables", Data carries the instance variables payload.
uip maestro instance incidents
Data shape: Code: "InstanceIncidents", Data is an array of incident objects.
uip maestro instance asset
Fetch the BPMN asset attached to this instance's release.
Data shape: Code: "InstanceAsset", Data is the BPMN asset payload.
uip maestro instance cursors
Get current execution cursor positions — which element(s) the instance is paused at.
Data shape: Code: "InstanceCursors", Data lists the current cursor positions.
uip maestro instance goto
Move an execution cursor from one element to another.
Arguments:
<instance-id>(required)<transitions>(required) — JSON array of transitions, each withsourceElementIdandtargetElementId.
uip maestro instance goto c3d4e5f6-… \
'[{"sourceElementId":"Activity_1","targetElementId":"Activity_3"}]' \
--folder-key c3d4e5f6-…
uip maestro instance goto c3d4e5f6-… \
'[{"sourceElementId":"Activity_1","targetElementId":"Activity_3"}]' \
--folder-key c3d4e5f6-…
Data shape: Code: "InstanceGoto".
uip maestro instance element-executions
Get the per-element execution history for an instance.
Data shape: Code: "InstanceElementExecutions", Data is the per-element execution history.
Exemplos
# Paginate through instances for a specific process
uip maestro instance list --folder-key <k> \
--process-key "InvoiceOrchestration:1.0.0" --limit 50
# Pause, fix, resume
uip maestro instance pause <id> --folder-key <k> --comment "Investigating"
uip maestro instance resume <id> --folder-key <k>
# Inspect cursors, jump a faulted node, retry
uip maestro instance cursors <id> --folder-key <k>
uip maestro instance goto <id> '[{"sourceElementId":"A","targetElementId":"C"}]' --folder-key <k>
uip maestro instance retry <id> --folder-key <k>
# Upgrade a long-running instance to a new package version
uip maestro instance migrate <id> "1.2.0" --folder-key <k> --comment "Patch release"
# Paginate through instances for a specific process
uip maestro instance list --folder-key <k> \
--process-key "InvoiceOrchestration:1.0.0" --limit 50
# Pause, fix, resume
uip maestro instance pause <id> --folder-key <k> --comment "Investigating"
uip maestro instance resume <id> --folder-key <k>
# Inspect cursors, jump a faulted node, retry
uip maestro instance cursors <id> --folder-key <k>
uip maestro instance goto <id> '[{"sourceElementId":"A","targetElementId":"C"}]' --folder-key <k>
uip maestro instance retry <id> --folder-key <k>
# Upgrade a long-running instance to a new package version
uip maestro instance migrate <id> "1.2.0" --folder-key <k> --comment "Patch release"
Veja também
uip maestro incidents— incidents detached from a specific instanceuip maestro job— the job view of an instance runuip maestro process— start new instances- Orchestrator jobs
- Maestro overview
- Synopsis
- Common options
- Subcomandos
- uip maestro instance list
- uip maestro instance get
- uip maestro instance pause
- uip maestro instance resume
- uip maestro instance cancel
- uip maestro instance retry
- uip maestro instance migrate
- uip maestro instance variables
- uip maestro instance incidents
- uip maestro instance asset
- uip maestro instance cursors
- uip maestro instance goto
- uip maestro instance element-executions
- Exemplos
- Veja também