UiPath Documentation
uipath-cli
latest
false

UiPath CLI user guide

最終更新日時 2026年5月7日

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

参照

  • Synopsis
  • uip flow incident summary
  • uip flow incident get
  • 参照

このページは役に立ちましたか?

接続

ヘルプ リソース サポート

学習する UiPath アカデミー

質問する UiPath フォーラム

最新情報を取得