uipath-cli
latest
false
- 概要
- はじめに
- 概念
- Using UiPath CLI
- 使用ガイド
- CI/CD recipes
- コマンド リファレンス
- 概要
- 終了コード
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- プロジェクトを作成
- 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
- 元に戻す
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- 移行
- Reference & support
UiPath CLI user guide
最終更新日時 2026年5月7日
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 */ }
}
例
# 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>
参照
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