- Información general
- Comience ya
- Conceptos
- Uso de UiPath CLI
- Guías prácticas
- Recetas de CI/CD
- Referencia de los comandos
- Información general
- Códigos de salida
- Opciones globales
- agente de código UIP
- uip coder
- uip context-grounding
- UIP Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- añadir-entidad-de-datos-de-prueba
- añadir-cola-de-datos-de-prueba
- añadir-variación-de-datos-de-prueba
- Analizar
- Crear
- Crear proyecto
- Diferencia
- Buscar actividades
- obtener-reglas-del-analizador
- obtener-predeterminado-actividad-xaml
- obtener-errores
- obtener-casos-de-prueba-manual
- obtener-pasos-de-prueba-manual
- get-library-object-repository
- get-object-repository
- obtener versiones
- get-workflow-example
- indicar-aplicación
- indicar-elemento
- inspeccionar-paquete
- install-data-fabric-entities
- instalar-o-actualizar-paquetes
- enumerar-data-fabric-entities
- list-instances
- ejemplos-de-flujo-de-trabajo-de-lista
- Paquete
- Publicar
- remote
- restore
- run, debug & execution
- archivo de ejecución
- plantillas-de-búsqueda
- iniciar-studio
- detener la ejecución
- tm
- UIA
- uip tasks
- Seguimientos de UIP
- uip traces feedback
- Migración
- Referencia y soporte
Syntax and options for `uip admin rcs`, which searches Resource Catalog Service entities and lists tenant tags.
uip admin rcs queries the Resource Catalog Service (RCS) — the platform-wide index of automatable entities (processes, orchestration objects, and other resource types) that back pickers like Orchestrator's "Add Tool" UI — plus the tenant-scoped tags RCS tracks for those entities. Part of uip admin (overview), the UiPath admin tool.
Sinopsis
uip admin rcs search [--entity-type <type>]... [--entity-sub-type <type>]... [--name <text>] [--folder-key <guid> | --folder-path <path>] [--limit <n>] [--offset <n>]
uip admin rcs tag list [--type Label|KeyValue] [--starts-with <prefix>] [--limit <n>] [--offset <n>]
uip admin rcs search [--entity-type <type>]... [--entity-sub-type <type>]... [--name <text>] [--folder-key <guid> | --folder-path <path>] [--limit <n>] [--offset <n>]
uip admin rcs tag list [--type Label|KeyValue] [--starts-with <prefix>] [--limit <n>] [--offset <n>]
Both verbs accept --login-validity <minutes>.
uip admin rcs search
Search RCS entities (GET /Entities/Search) — for example, to reproduce what Orchestrator's Add-Tool picker sees.
Opciones
| Largo | Valor | Descripción |
|---|---|---|
--entity-type <value> | string, repeatable | RCS entityTypes filter entry (e.g. Process). Repeat for multiple values. |
--entity-sub-type <value> | string, repeatable | RCS entitySubType filter entry (e.g. ProcessOrchestration). Repeat for multiple values. |
--name <text> | String | Substring filter on entity name. |
--folder-key <guid> | GUID | Scope the search to one folder (sent as X-UIPATH-FolderKey). |
--folder-path <path> | String | Scope the search to one folder by path (sent as X-UIPATH-FolderPath). |
--limit <n> | Entero | Page size (RCS take). Default 100. |
--offset <n> | Entero | Row offset (RCS skip). Default 0. |
--login-validity <minutes> | Entero | Override the interactive-login token lifetime for this call. Rarely needed. |
Ejemplos
# Search RCS Process entities by entitySubType (matches the Orchestrator UI Add-Tool picker)
uip admin rcs search --entity-type Process --entity-sub-type ProcessOrchestration --limit 8
# Search RCS Process entities by entitySubType (matches the Orchestrator UI Add-Tool picker)
uip admin rcs search --entity-type Process --entity-sub-type ProcessOrchestration --limit 8
# Search across one folder by key
uip admin rcs search --entity-type Process --folder-key 11111111-1111-1111-1111-111111111111
# Search across one folder by key
uip admin rcs search --entity-type Process --folder-key 11111111-1111-1111-1111-111111111111
Forma de datos (--json de salida)
{
"Code": "RcsSearch",
"Data": {
"items": [
{
"entityKey": "entity-guid",
"name": "Sample Orchestrator",
"entityType": "Process",
"entitySubType": "ProcessOrchestration"
}
],
"total": 1,
"count": 1
}
}
{
"Code": "RcsSearch",
"Data": {
"items": [
{
"entityKey": "entity-guid",
"name": "Sample Orchestrator",
"entityType": "Process",
"entitySubType": "ProcessOrchestration"
}
],
"total": 1,
"count": 1
}
}
next ({ skip, take }) is present only when more rows remain beyond this page — use it to page forward with --offset.
uip admin rcs tag
List tenant-scoped tags tracked by RCS.
uip admin rcs tag list
Lists tags for the tenant in your login context. Switch tenants with uip login tenant set <tenant> (your account needs RCS access to that tenant).
Opciones
| Largo | Valor | Descripción |
|---|---|---|
--type <type> | Label | KeyValue | Tag type. Default Label. Case-sensitive. |
--starts-with <prefix> | String | Return only tags whose normalized name starts with this prefix (case-insensitive). |
--limit <n> | Entero | Page size. Default 100. |
--offset <n> | Entero | Row offset. Default 0. |
--login-validity <minutes> | Entero | Override the interactive-login token lifetime for this call. Rarely needed. |
Ejemplos
uip admin rcs tag list
uip admin rcs tag list
uip admin rcs tag list --starts-with env --limit 20
uip admin rcs tag list --starts-with env --limit 20
Forma de datos (--json de salida)
{
"Code": "RcsTagList",
"Data": {
"count": 2,
"value": [
{ "displayName": "Environment", "normalizedName": "environment" },
{ "displayName": "Owner", "normalizedName": "owner" }
]
}
}
{
"Code": "RcsTagList",
"Data": {
"count": 2,
"value": [
{ "displayName": "Environment", "normalizedName": "environment" },
{ "displayName": "Owner", "normalizedName": "owner" }
]
}
}
Solución de problemas
- "Invalid scope(s)" on
tag list— re-runuip loginto mint a token carrying theRCS.Tagsscope. - Both verbs require an active login with Resource Catalog Service access — run
uip loginfirst.
Relacionado
uip admin— overview of the wholeuip admintool.uip or audit-logs— a related but distinct audit surface, scoped to Orchestrator entities rather than the platform-wide RCS index.