uipath-cli
latest
false
- Información general
- Comience ya
- Conceptos
- Using UiPath CLI
- Guías prácticas
- CI/CD recipes
- Referencia de los comandos
- Información general
- Códigos de salida
- Global options
- uip codedagent
- uip docsai
- Conectores
- Conexiones
- Actividades
- Recursos
- Desencadenadores
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- Crear proyecto
- 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
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- Migración
- Reference & support
UiPath CLI user guide
Última actualización 7 de may. de 2026
uip is activities lists the operations a connector exposes. Activities are the named actions (CreateTicket, ListAllRecords, etc.) that an automation can drive against a connector — they map onto HTTP methods and connector objects under the hood. Results are cached per-connector-and-tenant; pass --refresh to re-fetch.
Synopsis
uip is activities <verb> [options]
uip is activities <verb> [options]
Verbs
| Verb | Propósito |
|---|---|
list | List the activities a connector exposes. With --triggers, list trigger activities only. |
uip is activities list
List activities for a connector. By default, trigger activities are excluded; pass --triggers to list only triggers.
Argumentos
| Nombre | Obligatorio | Propósito |
|---|---|---|
<connector-key> | Sí | Connector key, for example uipath-zoho-desk. |
Opciones
| Corto | Largo | Valor | Predeterminado | Descripción |
|---|---|---|---|---|
-t | --tenant | name | session default | Override the tenant. |
| — | --refresh | flag | off | Force re-fetch from the API, ignoring cache. |
| — | --triggers | flag | off | List trigger activities only. Switches Code to TriggerActivityList. |
Ejemplos
uip is activities list uipath-zoho-desk
# Trigger activities only
uip is activities list uipath-zoho-desk --triggers
# Just the activity names
uip is activities list uipath-zoho-desk \
--output-filter 'Data[].Name'
uip is activities list uipath-zoho-desk
# Trigger activities only
uip is activities list uipath-zoho-desk --triggers
# Just the activity names
uip is activities list uipath-zoho-desk \
--output-filter 'Data[].Name'
Data shape (--output json)
{
"Code": "ActivityList",
"Data": [
{
"Name": "CreateTicket",
"DisplayName": "Create Ticket",
"Description": "Create a new ticket in Zoho Desk.",
"ObjectName": "create_ticket",
"MethodName": "POST",
"Operation": "N/A",
"IsCurated": "Yes"
},
{
"Name": "ListAllRecords",
"DisplayName": "List Records",
"Description": "Retrieve and list records from Zoho Desk.",
"ObjectName": "N/A",
"MethodName": "N/A",
"Operation": "List",
"IsCurated": "No"
}
]
}
{
"Code": "ActivityList",
"Data": [
{
"Name": "CreateTicket",
"DisplayName": "Create Ticket",
"Description": "Create a new ticket in Zoho Desk.",
"ObjectName": "create_ticket",
"MethodName": "POST",
"Operation": "N/A",
"IsCurated": "Yes"
},
{
"Name": "ListAllRecords",
"DisplayName": "List Records",
"Description": "Retrieve and list records from Zoho Desk.",
"ObjectName": "N/A",
"MethodName": "N/A",
"Operation": "List",
"IsCurated": "No"
}
]
}
With --triggers, the response uses Code: "TriggerActivityList" and the same per-row shape.
Related
uip is connectors— find the connector key first.uip is resources— call the data plane behind these activities (describe,execute).uip is triggers— full metadata for event-driven activities.