UiPath Documentation
uipath-cli
latest
false

UiPath CLI user guide

Última actualización 7 de may. de 2026

uip is connectors

uip is connectors browses the Integration Service connector catalog — every integration the tenant can authenticate against (Salesforce, Slack, Zoho Desk, etc.). It is read-only: list returns the catalog, get returns the full record for one connector by key. Both verbs cache results per-tenant on disk; pass --refresh to force a fresh fetch.

Synopsis

uip is connectors <verb> [options]
uip is connectors <verb> [options]

Verbs

VerbPropósito
listList connectors available to the tenant; optionally filter by name or key.
getFetch full details for one connector by key.

uip is connectors list

List connectors available to the current tenant. Cached per-tenant on disk.

Opciones

CortoLargoValorPredeterminadoDescripción
-t--tenantnamesession defaultOverride the tenant selected at auth time.
-f--filtertextSubstring match against connector name or key.
--refreshflagoffForce re-fetch from the API, ignoring cache.

Ejemplos

uip is connectors list

uip is connectors list --filter zoho

uip is connectors list --filter slack \
    --output-filter 'Data[].{name:Name, key:Key}'
uip is connectors list

uip is connectors list --filter zoho

uip is connectors list --filter slack \
    --output-filter 'Data[].{name:Name, key:Key}'

Data shape (--output json)

{
  "Code": "ConnectorList",
  "Data": [
    {
      "Id": 492,
      "Name": "Zoho Desk",
      "Key": "uipath-zoho-desk",
      "Vendor": "",
      "Active": "No",
      "Version": "",
      "Stage": "",
      "DapCompatible": "No"
    }
  ]
}
{
  "Code": "ConnectorList",
  "Data": [
    {
      "Id": 492,
      "Name": "Zoho Desk",
      "Key": "uipath-zoho-desk",
      "Vendor": "",
      "Active": "No",
      "Version": "",
      "Stage": "",
      "DapCompatible": "No"
    }
  ]
}

If no connectors match, the command succeeds with Code: "Message" and Data: { "Message": "No connectors found." }.

uip is connectors get

Return the full record for one connector by key.

Argumentos

NombreObligatorioPropósito
<connector-key>Connector key, for example uipath-zoho-desk. Find it with connectors list.

Opciones

CortoLargoValorPredeterminadoDescripción
-t--tenantnamesession defaultOverride the tenant.

Ejemplos

uip is connectors get uipath-zoho-desk

uip is connectors get uipath-zoho-desk \
    --output-filter 'Data[0].{events:HasEvents, cruds:HasCruds}'
uip is connectors get uipath-zoho-desk

uip is connectors get uipath-zoho-desk \
    --output-filter 'Data[0].{events:HasEvents, cruds:HasCruds}'

Data shape (--output json)

{
  "Code": "Connector",
  "Data": [
    {
      "Id": 492,
      "Name": "Zoho Desk",
      "Key": "uipath-zoho-desk",
      "Description": "Zoho Desk streamlines customer service...",
      "HasEvents": "Yes",
      "HasCruds": "No",
      "HasMethods": "No",
      "DapCompatible": "No",
      "Categories": "IT and help desk",
      "Tags": "Service desk, Agents, Tickets",
      "Tier": "2"
    }
  ]
}
{
  "Code": "Connector",
  "Data": [
    {
      "Id": 492,
      "Name": "Zoho Desk",
      "Key": "uipath-zoho-desk",
      "Description": "Zoho Desk streamlines customer service...",
      "HasEvents": "Yes",
      "HasCruds": "No",
      "HasMethods": "No",
      "DapCompatible": "No",
      "Categories": "IT and help desk",
      "Tags": "Service desk, Agents, Tickets",
      "Tier": "2"
    }
  ]
}

Full field list (all returned): Id, Name, Key, AppName, Vendor, Description, Active, Version, LifecycleStage, DiscoveryType, DefaultAuth, HasEvents, HasCruds, HasMethods, DapCompatible, MinDapVersion, ActivityPackVersion, ActivityColor, Categories, Tags, DocumentationUrl, Guid, Tier, CreatedAt, UpdatedAt.

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