UiPath Documentation
uipath-cli
latest
false

UiPath CLI user guide

Última actualización 7 de may. de 2026

uip resource assets

Manage Orchestrator assets — named configuration values used by automations at runtime (Text, Bool, Integer, Credential, Secret). Most operations are folder-scoped.

For the cross-resource conventions (auth, folder scoping, key types, output envelope), see the uip resource overview.

Synopsis

uip resource assets list             --folder-path <path> | --folder-key <key> [-n <name>] [--type <type>] [-l <n>] [--offset <n>] [--order-by <field>]
uip resource assets get              <asset-key>
uip resource assets create           <name> <value> --folder-path <path> | --folder-key <key> [--type <type>] [-s <scope>] [-d <desc>] [--has-default] [--tags <list>] [--credential-store-key <guid>]
uip resource assets update           <asset-key> [<value>] [flags as for create]
uip resource assets delete           <asset-key>
uip resource assets get-folders      <asset-key>
uip resource assets share            <asset-key> --folder-path <path> | --folder-key <key>
uip resource assets unshare          <asset-key> --folder-path <path> | --folder-key <key>
uip resource assets get-asset-value  <asset-key> --folder-path <path> | --folder-key <key> [--executor-key <guid>]
uip resource assets list             --folder-path <path> | --folder-key <key> [-n <name>] [--type <type>] [-l <n>] [--offset <n>] [--order-by <field>]
uip resource assets get              <asset-key>
uip resource assets create           <name> <value> --folder-path <path> | --folder-key <key> [--type <type>] [-s <scope>] [-d <desc>] [--has-default] [--tags <list>] [--credential-store-key <guid>]
uip resource assets update           <asset-key> [<value>] [flags as for create]
uip resource assets delete           <asset-key>
uip resource assets get-folders      <asset-key>
uip resource assets share            <asset-key> --folder-path <path> | --folder-key <key>
uip resource assets unshare          <asset-key> --folder-path <path> | --folder-key <key>
uip resource assets get-asset-value  <asset-key> --folder-path <path> | --folder-key <key> [--executor-key <guid>]

List assets in a folder. Requires --folder-path or --folder-key. Filters: -n, --name <name>, --type <Text|Bool|Integer|Credential|Secret> (case-insensitive). Credential and secret values are omitted from results.

uip resource assets list --folder-path Shared --type Credential
uip resource assets list --folder-path Shared --type Credential

Get asset details by key. Cross-folder — no folder needed. Credential/secret values are not returned.

uip resource assets get a1b2c3d4-0000-0000-0000-000000000001
uip resource assets get a1b2c3d4-0000-0000-0000-000000000001

create

Create an asset in a folder. Requires <name> and <value>. Flags: --type <Text|Bool|Integer|Credential|Secret> (default Text), -s, --scope <Global|PerRobot> (default Global), -d, --description, --has-default, --tags <comma-list>, --credential-store-key <guid> (required for Credential/Secret). Bool values must be true/false; Integer must be a whole number; Credential uses username:password format (except when backed by a read-only external credential store — then <value> is the external lookup name).

uip resource assets create ApiEndpoint "https://api.example.com" \
  --folder-path Shared --type Text
uip resource assets create ApiEndpoint "https://api.example.com" \
  --folder-path Shared --type Text

Actualizar

Update an asset by key. Cross-folder. <value> is optional; only provided fields are changed. Same type/scope/tags flags as create.

uip resource assets update a1b2c3d4-0000-0000-0000-000000000001 \
  "https://api.new.example.com" --description "Production API"
uip resource assets update a1b2c3d4-0000-0000-0000-000000000001 \
  "https://api.new.example.com" --description "Production API"

Eliminar

Delete an asset by key. Cross-folder.

uip resource assets delete a1b2c3d4-0000-0000-0000-000000000010
uip resource assets delete a1b2c3d4-0000-0000-0000-000000000010

get-folders

List every folder the asset is shared with, plus the total count.

uip resource assets get-folders a1b2c3d4-0000-0000-0000-000000000001
uip resource assets get-folders a1b2c3d4-0000-0000-0000-000000000001

share / unshare

Add or remove the asset from a folder. Requires --folder-path or --folder-key.

uip resource assets share a1b2c3d4-0000-0000-0000-000000000001 \
  --folder-path "Production"
uip resource assets unshare a1b2c3d4-0000-0000-0000-000000000001 \
  --folder-path "Production"
uip resource assets share a1b2c3d4-0000-0000-0000-000000000001 \
  --folder-path "Production"
uip resource assets unshare a1b2c3d4-0000-0000-0000-000000000001 \
  --folder-path "Production"

get-asset-value

Return the asset's value for the current user (default) or for a given executor (--executor-key <guid>). Requires --folder-path or --folder-key. Credential-type assets served by an external store can only be read via --executor-key; the command surfaces that remediation when it gets a 403.

uip resource assets get-asset-value a1b2c3d4-0000-0000-0000-000000000001 \
  --folder-path Shared
uip resource assets get-asset-value a1b2c3d4-0000-0000-0000-000000000001 \
  --folder-path Shared

Ver también

¿Te ha resultado útil esta página?

Conectar

¿Necesita ayuda? Soporte

¿Quiere aprender? UiPath Academy

¿Tiene alguna pregunta? Foro de UiPath

Manténgase actualizado