uipath-cli
latest
false
- Información general
- Comience ya
- Conceptos
- Using UiPath CLI
- Guías prácticas
- CI/CD recipes
- Referencia de los comandos
- Información general
- Códigos de salida
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- Crear proyecto
- 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
- Migración
- Reference & support
UiPath CLI user guide
Última actualización 7 de may. de 2026
uip flow incident reads incidents — unhandled errors raised during Flow process execution — either as tenant-wide summaries or as a single record by ID. The command name is singular (incident) even though the file and sidebar entry say incidents.
All subcommands require uip login and honor global options. Exit codes follow the standard contract.
Synopsis
uip flow incident summary
uip flow incident get <incident-id> --folder-key <key>
uip flow incident summary
uip flow incident get <incident-id> --folder-key <key>
For incidents scoped to a specific process or instance, use:
uip flow processes incidents <process-key>— all incidents for one process.uip flow instance incidents <instance-id>— all incidents for one running instance.
uip flow incident summary
Get a tenant-wide rollup of incidents across Flow processes.
Arguments: none. Options: none beyond globals.
Data shape (--output json):
{
"Code": "IncidentSummary",
"Data": [ /* array of incident summaries */ ]
}
{
"Code": "IncidentSummary",
"Data": [ /* array of incident summaries */ ]
}
The list is returned unfiltered — use --output-filter with a JMESPath query to extract specific fields.
uip flow incident get
Get a single incident by ID.
Arguments:
<incident-id>(required) — incident ID. URL-encoded automatically.
Options:
--folder-key <key>(required) — folder key.
Data shape:
{
"Code": "IncidentGet",
"Data": { /* incident details */ }
}
{
"Code": "IncidentGet",
"Data": { /* incident details */ }
}
Ejemplos
# Tenant-wide incident rollup
uip flow incident summary
# Extract just the incident IDs and counts
uip flow incident summary --output-filter "[*].{processKey:processKey,count:incidentCount}"
# Get a specific incident
uip flow incident get "inc_abcdef1234" --folder-key <folder-key>
# Tenant-wide incident rollup
uip flow incident summary
# Extract just the incident IDs and counts
uip flow incident summary --output-filter "[*].{processKey:processKey,count:incidentCount}"
# Get a specific incident
uip flow incident get "inc_abcdef1234" --folder-key <folder-key>
Ver también
uip flow instance incidents— incidents for one instanceuip flow processes incidents— incidents for one process definitionuip flow instance retry— remediate a faulted instance- Flow overview