- Überblick
- Erste Schritte
- Konzepte
- Verwenden der UiPath CLI
- Anleitungen
- CI/CD-Rezepte
- Befehlsreferenz
- Überblick
- Exitcodes
- Globale Optionen
- users, groups
- robot-accounts, pat & scopes
- external-apps
- smtp
- authorization
- ip-restriction
- organizations & tenants
- integrations vpn
- rcs
- Audit
- UIP-codierter Agent
- uip coder
- uip context-grounding
- UIP-Dokumentation
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Add-Test-Data-Entität
- Add-Test-Data-Queue
- Add-Test-Data-Variation
- Analysieren
- Erstellen
- Ein Projekt erstellen
- Diff
- Suchaktivitäten
- Get-Analyse-Regeln
- get-standard-aktivität-xaml
- Fehler abrufen
- Manuelle-Testfälle erhalten
- Manuelle-Testschritte erhalten
- get-library-object-repository
- get-object-repository
- Get-Versionen
- Beispiel für einen Workflow abrufen
- Anwendung anzeigen
- Anzeigeelement
- Inspektionspaket
- install-data-fabric-entities
- Pakete installieren oder aktualisieren
- list-data-fabric-entities
- list-instances
- Beispiele für Listenworkflows
- Packen
- Veröffentlichen
- remote
- restore
- run, debug & execution
- Ausführungsdatei installieren
- Suchvorlagen
- Studio starten
- Ausführung anhalten
- tm
- UIA
- uip tasks
- UIP-Ablaufverfolgungen
- uip traces feedback
- Migration
- Referenz und Support
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).
Zusammenfassung
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
Verben
| „Gruppieren“ (Group) | Verb | Zweck |
|---|---|---|
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.
Optionen
| Long | Short | Wert | Standard | Beschreibung |
|---|---|---|---|---|
--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. |
Beispiel
uip admin robot-accounts list --limit 5
uip admin robot-accounts list --limit 5
Datenform (--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.
Argumente
| Name | Erforderlich | Zweck |
|---|---|---|
<robot-account-id> | ja | Robot account ID (UUID). |
Beispiel
uip admin robot-accounts get a1b2c3d4-0000-0000-0000-000000000001
uip admin robot-accounts get a1b2c3d4-0000-0000-0000-000000000001
Datenform (--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.
Argumente
| Name | Erforderlich | Zweck |
|---|---|---|
<name> | ja | Robot account name. |
Optionen
| Long | Wert | Beschreibung |
|---|---|---|
--display-name <name> | string | Display name. Defaults to <name> when omitted. |
Beispiel
uip admin robot-accounts create "automation-bot" --display-name "Automation Bot"
uip admin robot-accounts create "automation-bot" --display-name "Automation Bot"
Datenform (--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").
Argumente
| Name | Erforderlich | Zweck |
|---|---|---|
<robot-account-id> | ja | Robot account ID (UUID). |
Optionen
| Long | Wert | Erforderlich | Beschreibung |
|---|---|---|---|
--display-name <name> | string | ja | Neuer Anzeigename. |
Beispiel
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"
Datenform (--output json)
{ "Code": "RobotAccountUpdated" }
{ "Code": "RobotAccountUpdated" }
uip admin robot-accounts delete
Delete a robot account by ID.
Argumente
| Name | Erforderlich | Zweck |
|---|---|---|
<robot-account-id> | ja | Robot account ID (UUID). |
Beispiel
uip admin robot-accounts delete a1b2c3d4-0000-0000-0000-000000000001
uip admin robot-accounts delete a1b2c3d4-0000-0000-0000-000000000001
Datenform (--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.
Optionen
| Long | Wert | Beschreibung |
|---|---|---|
--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. |
Beispiel
uip admin pat list
uip admin pat list
Datenform (--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.
Optionen
| Long | Wert | Erforderlich | Beschreibung |
|---|---|---|---|
--description <text> | string | ja | Description for the token. |
--expiration <date> | YYYY-MM-DD | ja | Expiration date. Strictly validated — rejects malformed dates and calendar rollovers (e.g. 2027-02-30). |
--scope <scopes> | comma-separated | ja | One or more scopes, e.g. OR.Folders.Read,OR.Jobs.Read. See scopes list for the full catalog. |
Beispiel
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"
Datenform (--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.
Argumente
| Name | Erforderlich | Zweck |
|---|---|---|
<id> | ja | Token ID (UUID). Find it with pat list. |
Beispiel
uip admin pat revoke a1b2c3d4-0000-0000-0000-000000000001
uip admin pat revoke a1b2c3d4-0000-0000-0000-000000000001
Datenform (--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.
Argumente
| Name | Erforderlich | Zweck |
|---|---|---|
<id> | ja | Token ID (UUID). |
Optionen
| Long | Wert | Erforderlich | Beschreibung |
|---|---|---|---|
--expiration <date> | YYYY-MM-DD | ja | New expiration date. Same strict validation as create. |
Beispiel
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
Datenform (--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.
Beispiel
uip admin scopes list
uip admin scopes list
Datenform (--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.
Zugehörig
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.
Siehe auch
- Zusammenfassung
- Verben
- uip admin robot-accounts list
- Optionen
- Beispiel
- Datenform (--output json)
- uip admin robot-accounts get
- Argumente
- Beispiel
- Datenform (--output json)
- uip admin robot-accounts create
- Argumente
- Optionen
- Beispiel
- Datenform (--output json)
- uip admin robot-accounts update
- Argumente
- Optionen
- Beispiel
- Datenform (--output json)
- uip admin robot-accounts delete
- Argumente
- Beispiel
- Datenform (--output json)
- uip admin pat list
- Optionen
- Beispiel
- Datenform (--output json)
- uip admin pat create
- Optionen
- Beispiel
- Datenform (--output json)
- uip admin pat revoke
- Argumente
- Beispiel
- Datenform (--output json)
- uip admin pat regenerate
- Argumente
- Optionen
- Beispiel
- Datenform (--output json)
- uip admin scopes list
- Beispiel
- Datenform (--output json)
- Zugehörig
- Siehe auch