- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- 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-library-object-repository
- get-object-repository
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- pack
- publish
- remote
- restore
- run, debug & execution
- run-file
- search-templates
- start-studio
- stop-execution
- tm
- uia
- uip tasks
- uip traces
- uip traces feedback
- Migration
- Reference & support
Syntax and options for `uip maestro bpmn process` and `uip maestro bpmn processes`, covering per-folder and tenant-wide published Maestro BPMN process operations.
Once a Maestro BPMN package is published to Orchestrator it becomes a process of type ProcessOrchestration. Both command groups below are registered under the bpmn branch. This page covers two related command groups:
uip maestro bpmn process— per-folder operations on a single process definition (list in a folder, get its schema, run it, pack+publish it).uip maestro bpmn processes(plural) — tenant-wide summaries, per-process incident lookup, and diagnostics.
Synopsis
# Singular — per-folder, operational
uip maestro bpmn process list -f <folder-key> [--filter <odata>] [--login-validity <minutes>]
uip maestro bpmn process get <process-key> <feed-id> -f <folder-key> [--login-validity <minutes>]
uip maestro bpmn process run <process-key> <folder-key> --release-key <key>
[-i, --inputs <json>] [--feed-id <id>] [--robot-ids <ids>]
[--login-validity <minutes>]
uip maestro bpmn process publish <project-path> [output-path] -f <folder-key>
[-n, --name <name>] [--process-name <name>] [-v, --version <version>]
[-i, --inputs <json>] [--feed-id <id>] [--entry-point <path>]
[--wait [--timeout <seconds>] [--poll-interval <seconds>]] [--login-validity <minutes>]
# Plural — tenant-wide summary, incidents, and diagnostics
uip maestro bpmn processes list [--folder-key <key>] [-l <limit>] [--offset <n>] [--status <status>]
uip maestro bpmn processes incidents <process-key> --folder-key <key>
uip maestro bpmn processes diagnose <process-key> --folder-key <key>
uip maestro bpmn processes error-codes <process-key> --folder-key <key>
# Singular — per-folder, operational
uip maestro bpmn process list -f <folder-key> [--filter <odata>] [--login-validity <minutes>]
uip maestro bpmn process get <process-key> <feed-id> -f <folder-key> [--login-validity <minutes>]
uip maestro bpmn process run <process-key> <folder-key> --release-key <key>
[-i, --inputs <json>] [--feed-id <id>] [--robot-ids <ids>]
[--login-validity <minutes>]
uip maestro bpmn process publish <project-path> [output-path] -f <folder-key>
[-n, --name <name>] [--process-name <name>] [-v, --version <version>]
[-i, --inputs <json>] [--feed-id <id>] [--entry-point <path>]
[--wait [--timeout <seconds>] [--poll-interval <seconds>]] [--login-validity <minutes>]
# Plural — tenant-wide summary, incidents, and diagnostics
uip maestro bpmn processes list [--folder-key <key>] [-l <limit>] [--offset <n>] [--status <status>]
uip maestro bpmn processes incidents <process-key> --folder-key <key>
uip maestro bpmn processes diagnose <process-key> --folder-key <key>
uip maestro bpmn processes error-codes <process-key> --folder-key <key>
All subcommands require uip login and honor global options. Exit codes follow the standard contract.
uip maestro bpmn process list
List available Maestro processes (releases) in a specific folder.
Options
| Option | Required | Description |
|---|---|---|
-f, --folder-key <key> | yes | Folder key (GUID). |
--filter <odata> | no | Additional OData filter applied server-side. |
--login-validity <minutes> | no | Token-refresh threshold (default 10). |
Data shape (--output json)
{
"Code": "MaestroProcessList",
"Data": [
{
"name": "InvoiceOrchestration",
"processKey": "a1b2c3d4-0000-0000-0000-000000000001",
"processVersion": "1.0.0",
"packageId": "a1b2c3d4-0000-0000-0000-000000000001",
"packageVersion": "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",
"processVersion": "1.0.0",
"packageId": "a1b2c3d4-0000-0000-0000-000000000001",
"packageVersion": "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 bpmn 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)--login-validity <minutes>(default10)
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 bpmn process run
Start a Maestro job for a published process.
Arguments
<process-key>(required) — versioned package process key fromprocess list, for exampleMyProcess:1.0.0.<folder-key>(required) — folder key (GUID).
Options
| Option | Required | Description |
|---|---|---|
--release-key <key> | yes | Release key (GUID) — from process list. |
-i, --inputs <json> | no | Inputs as a JSON string or @path/to/file.json. If omitted and stdin is piped, stdin is parsed. |
--feed-id <id> | no | Feed ID for package lookup (optional). |
--robot-ids <ids> | no | Comma-separated robot IDs (optional). |
--login-validity <minutes> | no | Token-refresh threshold (default 10). |
There is no --validate option on this command — inputs are sent as-is; the process itself is responsible for rejecting bad input.
Input precedence: --inputs <json> / --inputs @file.json > stdin > empty object {}.
Examples
# Inline JSON
uip maestro bpmn process run "InvoiceOrchestration:1.0.0" "<folder-key>" \
--release-key <release-key> --inputs '{"amount":100}'
# From a file
uip maestro bpmn process run "InvoiceOrchestration:1.0.0" "<folder-key>" \
--release-key <release-key> --inputs @inputs.json
# Piped stdin
echo '{"amount":100}' | uip maestro bpmn process run "InvoiceOrchestration:1.0.0" "<folder-key>" --release-key <release-key>
# Inline JSON
uip maestro bpmn process run "InvoiceOrchestration:1.0.0" "<folder-key>" \
--release-key <release-key> --inputs '{"amount":100}'
# From a file
uip maestro bpmn process run "InvoiceOrchestration:1.0.0" "<folder-key>" \
--release-key <release-key> --inputs @inputs.json
# Piped stdin
echo '{"amount":100}' | uip maestro bpmn process run "InvoiceOrchestration:1.0.0" "<folder-key>" --release-key <release-key>
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 bpmn job traces <jobKey> to stream execution or uip maestro bpmn job status <jobKey> to poll.
uip maestro bpmn process publish
Pack a Maestro BPMN project directory into a .nupkg and publish it as an Orchestrator process release, in one step.
Arguments
<project-path>(required) — path to the Maestro BPMN project directory.[output-path](optional) — output directory for the generated.nupkg. Defaults to a temp directory.
Options
| Option | Description |
|---|---|
-f, --folder-key <key> | Required. Folder key (GUID). |
-n, --name <name> | Package name. Default: the project folder name. |
--process-name <name> | Process release name. Default: the package name. |
-v, --version <version> | Package version. Default 1.0.0. |
-i, --inputs <json> | Default input parameters as a JSON string, @file.json, or - for stdin. |
--feed-id <id> | Feed ID for package upload (optional). |
--entry-point <path> | Entry point path for the process. |
--wait | Wait until the published package's entry points are available, instead of returning immediately after upload. |
--timeout <seconds> | Maximum seconds to wait for publish propagation when --wait is set. Default 300. |
--poll-interval <seconds> | Seconds between publish propagation checks when --wait is set. Default 5. |
--login-validity <minutes> | Token-refresh threshold. Default 10. |
Example
uip maestro bpmn process publish ./invoice-process \
--folder-key <folder-key> --version 1.2.0 --wait
uip maestro bpmn process publish ./invoice-process \
--folder-key <folder-key> --version 1.2.0 --wait
Data shape
{
"Code": "MaestroProcessPublished",
"Data": {
"Package": "invoice-process@1.2.0",
"PackagePath": "/tmp/maestro-process-publish-.../invoice-process.processOrchestration.ProcessOrchestration.1.2.0.nupkg",
"ProcessKey": "invoice-process.processOrchestration.ProcessOrchestration",
"ProcessVersion": "1.2.0",
"ReleaseKey": "e5f6a7b8-0000-0000-0000-000000000001",
"ReleaseName": "invoice-process",
"Action": "Created",
"Upload": [
{ "key": "invoice-process.processOrchestration.ProcessOrchestration", "status": "Created" }
],
"EntryPoints": 1
}
}
{
"Code": "MaestroProcessPublished",
"Data": {
"Package": "invoice-process@1.2.0",
"PackagePath": "/tmp/maestro-process-publish-.../invoice-process.processOrchestration.ProcessOrchestration.1.2.0.nupkg",
"ProcessKey": "invoice-process.processOrchestration.ProcessOrchestration",
"ProcessVersion": "1.2.0",
"ReleaseKey": "e5f6a7b8-0000-0000-0000-000000000001",
"ReleaseName": "invoice-process",
"Action": "Created",
"Upload": [
{ "key": "invoice-process.processOrchestration.ProcessOrchestration", "status": "Created" }
],
"EntryPoints": 1
}
}
Action is "Created" on first publish of a given process key, "Updated" on subsequent publishes.
uip maestro bpmn processes list
Tenant-wide (or folder-scoped) summary of Maestro processes. Unlike the singular process list, no processType filter is applied server-side — the plural command is shared across tools (Maestro, Flow, Case) and does not scope to ProcessOrchestration on its own.
Options
| Option | Description |
|---|---|
--folder-key <key> | Optional. Scope the summary to one folder. |
-l, --limit <number> | Number of items to return (1-10000). |
--offset <number> | Number of items to skip (0-1000000). Default 0. |
--status <status> | Filter by process status. |
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 bpmn processes incidents
Get all incidents for a specific Maestro process definition.
Arguments
<process-key>(required) — process definition key.
Options
--folder-key <key>(required)
Data shape
{
"Code": "ProcessIncidents",
"Data": [ /* array of process incidents */ ]
}
{
"Code": "ProcessIncidents",
"Data": [ /* array of process incidents */ ]
}
uip maestro bpmn processes diagnose
Correlate a process's summary, incidents, and error codes in a single call — a convenience wrapper over processes list, processes incidents, and processes error-codes.
Arguments
<process-key>(required) — process definition key.
Options
--folder-key <key>(required)
Data shape
{
"Code": "ProcessDiagnostics",
"Data": {
"ProcessKey": "InvoiceOrchestration",
"FolderKey": "c3d4e5f6-0000-0000-0000-000000000001",
"Summary": { /* the matching process summary object, or null if not found */ },
"FaultedCount": 2,
"RunningCount": 5,
"Incidents": [ /* array of incident objects */ ],
"IncidentCount": 1,
"ErrorCodes": [ /* array of error code strings */ ],
"ErrorCodeCount": 1
}
}
{
"Code": "ProcessDiagnostics",
"Data": {
"ProcessKey": "InvoiceOrchestration",
"FolderKey": "c3d4e5f6-0000-0000-0000-000000000001",
"Summary": { /* the matching process summary object, or null if not found */ },
"FaultedCount": 2,
"RunningCount": 5,
"Incidents": [ /* array of incident objects */ ],
"IncidentCount": 1,
"ErrorCodes": [ /* array of error code strings */ ],
"ErrorCodeCount": 1
}
}
uip maestro bpmn processes error-codes
Get the unique error codes raised by incidents for a specific process.
Arguments
<process-key>(required) — process definition key.
Options
--folder-key <key>(required)
Data shape
{
"Code": "ProcessIncidentErrorCodes",
"Data": [ /* array of error code strings */ ]
}
{
"Code": "ProcessIncidentErrorCodes",
"Data": [ /* array of error code strings */ ]
}
See also
uip maestro bpmn instances— inspect and steer running executionsuip maestro bpmn job— traces and status for a single jobuip maestro bpmn incidents— incident summaries and details- Orchestrator jobs, Orchestrator processes
- Maestro overview
- Synopsis
- uip maestro bpmn process list
- Options
- Data shape (
--output json) - uip maestro bpmn process get
- Arguments
- Options
- Data shape
- uip maestro bpmn process run
- Arguments
- Options
- Examples
- Data shape
- uip maestro bpmn process publish
- Arguments
- Options
- Example
- Data shape
- uip maestro bpmn processes list
- Options
- Data shape
- uip maestro bpmn processes incidents
- Arguments
- Options
- Data shape
- uip maestro bpmn processes diagnose
- Arguments
- Options
- Data shape
- uip maestro bpmn processes error-codes
- Arguments
- Options
- Data shape
- See also