UiPath Documentation
uipath-cli
latest
false

UiPath CLI user guide

最終更新日時 2026年5月7日

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

Verb目的
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.

オプション

Short長押し値 (Value)既定 (Default)説明
-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.

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.

引数

名前Required目的
<connector-key>Connector key, for example uipath-zoho-desk. Find it with connectors list.

オプション

Short長押し値 (Value)既定 (Default)説明
-t--tenantnamesession defaultOverride the tenant.

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.

参照

このページは役に立ちましたか?

接続

ヘルプ リソース サポート

学習する UiPath アカデミー

質問する UiPath フォーラム

最新情報を取得