- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- users, groups
- robot-accounts, pat & scopes
- external-apps
- smtp
- authorization
- ip-restriction
- organizations & tenants
- integrations vpn
- rcs
- 監査
- 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
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-library-object-repository
- get-object-repository
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- パッケージ化
- パブリッシュ
- remote
- 元に戻す
- run, debug & execution
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- tm
- UIA
- uip tasks
- uip traces
- uip traces feedback
- 移行
- 参照とサポート
Syntax and options for `uip admin robot-accounts`, `uip admin pat`, and `uip admin scopes` — non-human identities, personal access tokens, and the OAuth2 scope reference.
Three related, independent command groups: robot-accounts (non-human directory identities used for unattended automation), pat (personal access tokens for API authentication), and scopes (a read-only reference of every OAuth2 scope available to external apps and PATs).
概要
uip admin robot-accounts list [--search <term>] [--sort-by <field>] [--sort-order asc|desc] [--limit <n>] [--offset <n>]
uip admin robot-accounts get <robot-account-id>
uip admin robot-accounts create <name> [--display-name <name>]
uip admin robot-accounts update <robot-account-id> --display-name <name>
uip admin robot-accounts delete <robot-account-id>
uip admin pat list [--scope all] [--search <term>] [--limit <n>] [--offset <n>]
uip admin pat create --description <text> --expiration <date> --scope <scopes>
uip admin pat revoke <id>
uip admin pat regenerate <id> --expiration <date>
uip admin scopes list
uip admin robot-accounts list [--search <term>] [--sort-by <field>] [--sort-order asc|desc] [--limit <n>] [--offset <n>]
uip admin robot-accounts get <robot-account-id>
uip admin robot-accounts create <name> [--display-name <name>]
uip admin robot-accounts update <robot-account-id> --display-name <name>
uip admin robot-accounts delete <robot-account-id>
uip admin pat list [--scope all] [--search <term>] [--limit <n>] [--offset <n>]
uip admin pat create --description <text> --expiration <date> --scope <scopes>
uip admin pat revoke <id>
uip admin pat regenerate <id> --expiration <date>
uip admin scopes list
動詞
| グループ | 動詞 | 目的 |
|---|---|---|
robot-accounts | list | List robot accounts in the partition. |
robot-accounts | get | Get a robot account's details by ID. |
robot-accounts | create | Create a new robot account. |
robot-accounts | update | Update a robot account's display name. |
robot-accounts | delete | Delete a robot account by ID. |
pat | list | List personal access tokens (yours, or the org's with --scope all). |
pat | create | Create a new personal access token. |
pat | revoke | Revoke a token. |
pat | regenerate | Regenerate a token with a new expiration. |
scopes | list | List every OAuth2 scope available, grouped by resource. |
uip admin robot-accounts list
List robot accounts in the partition. Returns account ID, name, display name, and creation time.
オプション
| 長押し | Short | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
--search <term> | -s | string | — | Search by name. |
--sort-by <field> | string | — | Sort field, e.g. Name. | |
--sort-order <direction> | asc|desc | asc | Sort direction. | |
--limit <number> | -l | integer | 50 | Number of items to return. |
--offset <number> | integer | 0 | Number of items to skip. |
例
uip admin robot-accounts list --limit 5
uip admin robot-accounts list --limit 5
データシェイプ(--output json)
{
"Code": "RobotAccountList",
"Data": [
{ "id": "a1b2c3d4-0000-0000-0000-000000000001", "name": "automation-bot", "displayName": "Automation Bot", "creationTime": "2026-01-15T10:00:00.000Z" }
]
}
{
"Code": "RobotAccountList",
"Data": [
{ "id": "a1b2c3d4-0000-0000-0000-000000000001", "name": "automation-bot", "displayName": "Automation Bot", "creationTime": "2026-01-15T10:00:00.000Z" }
]
}
uip admin robot-accounts get
Get robot account details by ID.
引数
| 名前 | Required | 目的 |
|---|---|---|
<robot-account-id> | ○ | Robot account ID (UUID). |
例
uip admin robot-accounts get a1b2c3d4-0000-0000-0000-000000000001
uip admin robot-accounts get a1b2c3d4-0000-0000-0000-000000000001
データシェイプ(--output json)
{ "Code": "RobotAccountDetails", "Data": { "id": "a1b2c3d4-0000-0000-0000-000000000001", "name": "automation-bot", "displayName": "Automation Bot", "creationTime": "2026-01-15T10:00:00.000Z", "groupIds": [] } }
{ "Code": "RobotAccountDetails", "Data": { "id": "a1b2c3d4-0000-0000-0000-000000000001", "name": "automation-bot", "displayName": "Automation Bot", "creationTime": "2026-01-15T10:00:00.000Z", "groupIds": [] } }
uip admin robot-accounts create
Create a new robot account in the partition.
引数
| 名前 | Required | 目的 |
|---|---|---|
<name> | ○ | Robot account name. |
オプション
| 長押し | 値 (Value) | 説明 |
|---|---|---|
--display-name <name> | string | Display name. Defaults to <name> when omitted. |
例
uip admin robot-accounts create "automation-bot" --display-name "Automation Bot"
uip admin robot-accounts create "automation-bot" --display-name "Automation Bot"
データシェイプ(--output json)
{ "Code": "RobotAccountCreated", "Data": { "id": "a1b2c3d4-0000-0000-0000-000000000002", "name": "automation-bot", "displayName": "Automation Bot" } }
{ "Code": "RobotAccountCreated", "Data": { "id": "a1b2c3d4-0000-0000-0000-000000000002", "name": "automation-bot", "displayName": "Automation Bot" } }
uip admin robot-accounts update
Update a robot account's display name. --display-name is the only field and is effectively required — omitting it fails client-side ("No fields to update").
引数
| 名前 | Required | 目的 |
|---|---|---|
<robot-account-id> | ○ | Robot account ID (UUID). |
オプション
| 長押し | 値 (Value) | Required | 説明 |
|---|---|---|---|
--display-name <name> | string | ○ | 新しい表示名。 |
例
uip admin robot-accounts update a1b2c3d4-0000-0000-0000-000000000001 --display-name "Updated Bot"
uip admin robot-accounts update a1b2c3d4-0000-0000-0000-000000000001 --display-name "Updated Bot"
データシェイプ(--output json)
{ "Code": "RobotAccountUpdated" }
{ "Code": "RobotAccountUpdated" }
uip admin robot-accounts delete
Delete a robot account by ID.
引数
| 名前 | Required | 目的 |
|---|---|---|
<robot-account-id> | ○ | Robot account ID (UUID). |
例
uip admin robot-accounts delete a1b2c3d4-0000-0000-0000-000000000001
uip admin robot-accounts delete a1b2c3d4-0000-0000-0000-000000000001
データシェイプ(--output json)
{ "Code": "RobotAccountDeleted", "Data": { "Id": "a1b2c3d4-0000-0000-0000-000000000001", "Status": "Deleted successfully" } }
{ "Code": "RobotAccountDeleted", "Data": { "Id": "a1b2c3d4-0000-0000-0000-000000000001", "Status": "Deleted successfully" } }
uip admin pat list
List personal access tokens. By default lists only your own; --scope all (admin-only) lists every token in the organization.
オプション
| 長押し | 値 (Value) | 説明 |
|---|---|---|
--scope <scope> | all | Only "all" is accepted — any other value fails client-side with an explicit error. Omit to list only your own tokens. |
--search <term> | string | Filter by user search term. Implies --scope all even if --scope isn't passed. |
--limit <number> (-l) | integer | Default 50. Number of items to return. |
--offset <number> | integer | Default 0. Number of items to skip. |
例
uip admin pat list
uip admin pat list
データシェイプ(--output json)
{
"Code": "PatList",
"Data": [
{ "id": "a1b2c3d4-0000-0000-0000-000000000001", "description": "CI/CD token", "expiration": "2027-01-15T00:00:00.000Z", "scopes": ["OR.Folders.Read"] }
]
}
{
"Code": "PatList",
"Data": [
{ "id": "a1b2c3d4-0000-0000-0000-000000000001", "description": "CI/CD token", "expiration": "2027-01-15T00:00:00.000Z", "scopes": ["OR.Folders.Read"] }
]
}
uip admin pat create
Create a new personal access token. The token value is returned only once — it is not retrievable later.
オプション
| 長押し | 値 (Value) | Required | 説明 |
|---|---|---|---|
--description <text> | string | ○ | Description for the token. |
--expiration <date> | YYYY-MM-DD | ○ | Expiration date. Strictly validated — rejects malformed dates and calendar rollovers (e.g. 2027-02-30). |
--scope <scopes> | comma-separated | ○ | One or more scopes, e.g. OR.Folders.Read,OR.Jobs.Read. See scopes list for the full catalog. |
例
uip admin pat create --description "CI/CD token" --expiration 2027-01-15 --scope "OR.Folders.Read,OR.Jobs.Read"
uip admin pat create --description "CI/CD token" --expiration 2027-01-15 --scope "OR.Folders.Read,OR.Jobs.Read"
データシェイプ(--output json)
{ "Code": "PatCreated", "Data": { "Token": "...", "Warning": "Save this token now. It will not be shown again." } }
{ "Code": "PatCreated", "Data": { "Token": "...", "Warning": "Save this token now. It will not be shown again." } }
uip admin pat revoke
Revoke a personal access token.
引数
| 名前 | Required | 目的 |
|---|---|---|
<id> | ○ | Token ID (UUID). Find it with pat list. |
例
uip admin pat revoke a1b2c3d4-0000-0000-0000-000000000001
uip admin pat revoke a1b2c3d4-0000-0000-0000-000000000001
データシェイプ(--output json)
{ "Code": "PatRevoked", "Data": { "Id": "a1b2c3d4-0000-0000-0000-000000000001", "Status": "Revoked successfully" } }
{ "Code": "PatRevoked", "Data": { "Id": "a1b2c3d4-0000-0000-0000-000000000001", "Status": "Revoked successfully" } }
uip admin pat regenerate
Regenerate a personal access token with a new expiration. Like create, the new token value is shown only once.
引数
| 名前 | Required | 目的 |
|---|---|---|
<id> | ○ | Token ID (UUID). |
オプション
| 長押し | 値 (Value) | Required | 説明 |
|---|---|---|---|
--expiration <date> | YYYY-MM-DD | ○ | New expiration date. Same strict validation as create. |
例
uip admin pat regenerate a1b2c3d4-0000-0000-0000-000000000001 --expiration 2028-01-15
uip admin pat regenerate a1b2c3d4-0000-0000-0000-000000000001 --expiration 2028-01-15
データシェイプ(--output json)
{ "Code": "PatRegenerated", "Data": { "Id": "a1b2c3d4-0000-0000-0000-000000000001", "Token": "...", "Warning": "Save this token now. It will not be shown again." } }
{ "Code": "PatRegenerated", "Data": { "Id": "a1b2c3d4-0000-0000-0000-000000000001", "Token": "...", "Warning": "Save this token now. It will not be shown again." } }
uip admin scopes list
List every OAuth2 scope available for external apps and personal access tokens, grouped by resource. Read-only, no options beyond global ones.
例
uip admin scopes list
uip admin scopes list
データシェイプ(--output json)
{
"Code": "ScopesList",
"Data": [
{
"name": "UiPath.Orchestrator",
"displayName": "Orchestrator API Access",
"scopes": [
{ "name": "OR.Folders", "displayName": "OR.Folders", "type": "user" }
]
}
]
}
{
"Code": "ScopesList",
"Data": [
{
"name": "UiPath.Orchestrator",
"displayName": "Orchestrator API Access",
"scopes": [
{ "name": "OR.Folders", "displayName": "OR.Folders", "type": "user" }
]
}
]
}
type on each scope entry is "user" (delegated, requires a signed-in user) or "application" (app-only) — the same distinction external-apps create's --user-scope/--app-scope flags and pat create's --scope flag draw from.
関連
uip admin users— directory users and groups.uip admin external-apps— OAuth2 client registrations, which use the same scope catalog.uip admin smtp— organization email configuration.
参照
- 概要
- 動詞
- uip admin robot-accounts list
- オプション
- 例
- データシェイプ(--output json)
- uip admin robot-accounts get
- 引数
- 例
- データシェイプ(--output json)
- uip admin robot-accounts create
- 引数
- オプション
- 例
- データシェイプ(--output json)
- uip admin robot-accounts update
- 引数
- オプション
- 例
- データシェイプ(--output json)
- uip admin robot-accounts delete
- 引数
- 例
- データシェイプ(--output json)
- uip admin pat list
- オプション
- 例
- データシェイプ(--output json)
- uip admin pat create
- オプション
- 例
- データシェイプ(--output json)
- uip admin pat revoke
- 引数
- 例
- データシェイプ(--output json)
- uip admin pat regenerate
- 引数
- オプション
- 例
- データシェイプ(--output json)
- uip admin scopes list
- 例
- データシェイプ(--output json)
- 関連
- 参照