UiPath Documentation
uipath-cli
latest
false

UiPath CLI user guide

Dernière mise à jour 7 mai 2026

uip flow incidents

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 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 */ }
}

Exemples

# 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>

Voir également

Cette page vous a-t-elle été utile ?

Connecter

Besoin d'aide ? Assistance

Vous souhaitez apprendre ? UiPath Academy

Vous avez des questions ? UiPath Forum

Rester à jour