- Überblick
- Erste Schritte
- Konzepte
- Using UiPath CLI
- Anleitungen
- CI/CD recipes
- Befehlsreferenz
- Überblick
- Exitcodes
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- Ein Projekt erstellen
- 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
Once a Maestro package is published to Orchestrator it becomes a process of type ProcessOrchestration. This page covers two related command groups:
uip maestro process— per-folder operations on a single process definition (list in a folder, get its schema, run it).uip maestro processes(plural) — tenant-wide summaries and per-process incident lookup.
Synopsis
# Singular — per-folder, operational
uip maestro process list -f <folder-key> [-t <tenant>] [--filter <odata>] [--login-validity <minutes>]
uip maestro process get <process-key> <feed-id> -f <folder-key> [-t <tenant>] [--login-validity <minutes>]
uip maestro process run <process-key> <folder-key>
[-i, --inputs <json>] [-t, --tenant <name>]
[--release-key <key>] [--feed-id <id>] [--robot-ids <ids>]
[--validate] [--login-validity <minutes>]
# Plural — tenant-wide summary and incident surface
uip maestro processes list
uip maestro processes incidents <process-key> [--folder-key <key>]
# Singular — per-folder, operational
uip maestro process list -f <folder-key> [-t <tenant>] [--filter <odata>] [--login-validity <minutes>]
uip maestro process get <process-key> <feed-id> -f <folder-key> [-t <tenant>] [--login-validity <minutes>]
uip maestro process run <process-key> <folder-key>
[-i, --inputs <json>] [-t, --tenant <name>]
[--release-key <key>] [--feed-id <id>] [--robot-ids <ids>]
[--validate] [--login-validity <minutes>]
# Plural — tenant-wide summary and incident surface
uip maestro processes list
uip maestro processes incidents <process-key> [--folder-key <key>]
All subcommands require uip login and honor global options. Exit codes follow the standard contract.
uip maestro process list
List available Maestro processes (releases) in a specific folder.
Options:
| Option | Erforderlich | Beschreibung |
|---|---|---|
-f, --folder-key <key> | ja | Folder key (GUID). |
-t, --tenant <name> | nein | Tenant name. Defaults to the authenticated tenant. |
--filter <odata> | nein | Additional OData filter applied server-side. |
--login-validity <minutes> | nein | Token-refresh threshold (default 10). |
Data shape (--output json):
{
"Code": "MaestroProcessList",
"Data": [
{
"name": "InvoiceOrchestration",
"processKey": "a1b2c3d4-0000-0000-0000-000000000001:1.0.0",
"releaseKey": "e5f6a7b8-0000-0000-0000-000000000001",
"folderKey": "c3d4e5f6-0000-0000-0000-000000000001",
"feedId": "default",
"folderId": 42,
"active": "Yes",
"latest": "Yes"
}
]
}
{
"Code": "MaestroProcessList",
"Data": [
{
"name": "InvoiceOrchestration",
"processKey": "a1b2c3d4-0000-0000-0000-000000000001:1.0.0",
"releaseKey": "e5f6a7b8-0000-0000-0000-000000000001",
"folderKey": "c3d4e5f6-0000-0000-0000-000000000001",
"feedId": "default",
"folderId": 42,
"active": "Yes",
"latest": "Yes"
}
]
}
uip maestro process get
Fetch the entry-point schema (input/output JSON schemas) for a Maestro process.
Arguments:
<process-key>(required) — process key.<feed-id>(required) — feed ID (fromlist).
Options: -f, --folder-key <key> (required), -t, --tenant, --login-validity.
Data shape:
{
"Code": "MaestroProcessGet",
"Data": [
{
"Path": "/content/main.bpmn#Event_start",
"DisplayName": "Manual trigger",
"Type": "processorchestration",
"InputSchema": "{\"type\":\"object\",\"properties\":{}}",
"OutputSchema": "{\"type\":\"object\",\"properties\":{}}"
}
]
}
{
"Code": "MaestroProcessGet",
"Data": [
{
"Path": "/content/main.bpmn#Event_start",
"DisplayName": "Manual trigger",
"Type": "processorchestration",
"InputSchema": "{\"type\":\"object\",\"properties\":{}}",
"OutputSchema": "{\"type\":\"object\",\"properties\":{}}"
}
]
}
InputSchema and OutputSchema are re-stringified JSON Schema strings.
uip maestro process run
Start a Maestro job for a published process.
Arguments:
<process-key>(required) — process key.<folder-key>(required) — folder key (GUID).
Options:
| Option | Beschreibung |
|---|---|
-i, --inputs <json> | Inputs as a JSON string or @path/to/file.json. If omitted and stdin is piped, stdin is parsed. |
-t, --tenant <name> | Tenant name (defaults to authenticated tenant). |
--release-key <key> | Release key (GUID) — from process list. |
--feed-id <id> | Feed ID for package lookup (optional). |
--robot-ids <ids> | Comma-separated robot IDs (integers). Invalid values fail fast. |
--validate | Validate inputs against the process schema before running. Basic checks only — required fields + primitive types. |
--login-validity <minutes> | Token-refresh threshold (default 10). |
Input precedence: --inputs <json> / --inputs @file.json > stdin > empty object {}.
Beispiele:
# Inline JSON
uip maestro process run "InvoiceOrchestration:1.0.0" "<folder-key>" \
--inputs '{"amount":100}'
# From a file
uip maestro process run "InvoiceOrchestration:1.0.0" "<folder-key>" --inputs @inputs.json
# Piped stdin
echo '{"amount":100}' | uip maestro process run "InvoiceOrchestration:1.0.0" "<folder-key>"
# Validate before running
uip maestro process run "InvoiceOrchestration:1.0.0" "<folder-key>" \
--inputs '{"amount":100}' --validate
# Inline JSON
uip maestro process run "InvoiceOrchestration:1.0.0" "<folder-key>" \
--inputs '{"amount":100}'
# From a file
uip maestro process run "InvoiceOrchestration:1.0.0" "<folder-key>" --inputs @inputs.json
# Piped stdin
echo '{"amount":100}' | uip maestro process run "InvoiceOrchestration:1.0.0" "<folder-key>"
# Validate before running
uip maestro process run "InvoiceOrchestration:1.0.0" "<folder-key>" \
--inputs '{"amount":100}' --validate
Data shape:
{
"Code": "MaestroJobStarted",
"Data": {
"jobKey": "b2c3d4e5-0000-0000-0000-000000000001",
"state": "Pending",
"traceId": "d4e5f6a7-0000-0000-0000-000000000001"
}
}
{
"Code": "MaestroJobStarted",
"Data": {
"jobKey": "b2c3d4e5-0000-0000-0000-000000000001",
"state": "Pending",
"traceId": "d4e5f6a7-0000-0000-0000-000000000001"
}
}
Next step: uip maestro job traces <jobKey> to stream execution or uip maestro job status <jobKey> to poll.
uip maestro processes list
Tenant-wide summary of Maestro processes (no processType filter applied at this layer — the plural command is shared across tools and does not scope to ProcessOrchestration server-side).
Arguments: none.
Data shape:
{
"Code": "ProcessList",
"Data": [ /* array of Maestro process summaries */ ]
}
{
"Code": "ProcessList",
"Data": [ /* array of Maestro process summaries */ ]
}
The exact field set of each process summary is specified by the Maestro runtime and may evolve; run the command once with --output json against a tenant with data to see the fields you will be consuming, and pin @uipath/cli in CI if you parse specific fields.
uip maestro processes incidents
Get all incidents for a specific Maestro process definition.
Arguments:
<process-key>(required) — process definition key.
Options:
--folder-key <key>(optional) — folder key to scope the lookup.
Data shape:
{
"Code": "ProcessIncidents",
"Data": [ /* array of process incidents */ ]
}
{
"Code": "ProcessIncidents",
"Data": [ /* array of process incidents */ ]
}
Siehe auch
uip maestro instances— inspect and steer running executionsuip maestro job— traces and status for a single jobuip maestro incidents— incident summaries and details- Orchestrator jobs, Orchestrator processes
- Maestro overview