UiPath Documentation
uipath-cli
latest
false
UiPath-CLI-Benutzerhandbuch
Wichtig :
Dieser Inhalt wurde maschinell übersetzt. Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.

UIP ist Connectors

Syntax and options for `uip is connectors`, which browses the Integration Service connector catalog and inspects a connector's discovery metadata, schema, and audit history.

uip is connectors browses the Integration Service connector catalog — every integration the tenant can authenticate against (Salesforce, Slack, Zoho Desk, etc.) — and inspects one connector's discovery metadata, OpenAPI document, event operations, and audit history. It is read-only: none of these verbs create or change a connector. list caches its result per-tenant on disk; pass --refresh to force a fresh fetch. get and every other verb below always call the API directly and never touch that cache.

Zusammenfassung

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

Verben

VerbZweck
listListen Sie die für den Mandanten verfügbaren Connectors auf; Optional nach Name oder Schlüssel filtern.
getVollständige Details für einen Connector nach Schlüssel abrufen.
metadataFetch a connector's discovery metadata (capability flags, tier, discovery type).
swaggerFetch the OpenAPI document for a connector element.
event-operationsList the event operations a connector element supports.
audit-logsList audit log entries for a connector element version.
exportExport a connector element's package to a local file.

UIP ist Connectors-Liste

Listen Sie Connectors auf, die für den aktuellen Mandanten verfügbar sind. Pro Mandant auf dem Datenträger zwischengespeichert.

Optionen

ShortLongWertStandardBeschreibung
-f--filtertextTeilzeichenfolge stimmt mit Connector-Name oder -Schlüssel überein.
--refreshMarkierenausErzwingen Sie den erneuten Abruf über die API und ignorieren Sie den Cache.

Beispiele

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}'

Datenform (--output json)

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

Wenn keine Connectors übereinstimmen, ist der Befehl mit Code: "Message" und Data: { "Message": "No connectors found." } erfolgreich.

UIP ist Connectors abrufen

Return the full record for one connector by key. Always calls the API directly — not cached.

Argumente

NameErforderlichZweck
<connector-key>jaConnector-Schlüssel, z. B. uipath-zoho-desk. Finden Sie es mit connectors list.

Optionen

Keine über die globalen Optionen hinaus.

Beispiele

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}'

Datenform (--output json)

{
  "Code": "Connector",
  "Data": [
    {
      "Id": 492,
      "Name": "Zoho Desk",
      "Key": "uipath-zoho-desk",
      "AppName": "",
      "Vendor": "",
      "Description": "Zoho Desk streamlines customer service, boosts agent efficiency and deliver lasting customer experiences",
      "Image": "https://example.com/zoho-desk/image",
      "Active": "No",
      "HasEvents": "Yes",
      "HasCruds": "No",
      "HasMethods": "No",
      "HasHttpRequest": "Yes",
      "DapCompatible": "No",
      "Categories": "IT and help desk",
      "Tags": "Service desk, Agents, Tickets",
      "DocumentationUrl": "No documentation"
    }
  ]
}
{
  "Code": "Connector",
  "Data": [
    {
      "Id": 492,
      "Name": "Zoho Desk",
      "Key": "uipath-zoho-desk",
      "AppName": "",
      "Vendor": "",
      "Description": "Zoho Desk streamlines customer service, boosts agent efficiency and deliver lasting customer experiences",
      "Image": "https://example.com/zoho-desk/image",
      "Active": "No",
      "HasEvents": "Yes",
      "HasCruds": "No",
      "HasMethods": "No",
      "HasHttpRequest": "Yes",
      "DapCompatible": "No",
      "Categories": "IT and help desk",
      "Tags": "Service desk, Agents, Tickets",
      "DocumentationUrl": "No documentation"
    }
  ]
}

Full field list (all returned): Id, Name, Key, AppName, Vendor, Description, Image, Active, HasEvents, HasCruds, HasMethods, HasHttpRequest, DapCompatible, Categories, Tags, DocumentationUrl. Description reads "No description" and DocumentationUrl reads "No documentation" when the catalog has nothing on file for that connector, rather than an empty string.

uip is connectors metadata

Fetch a connector's discovery metadata: capability flags (does it support events, CRUD, custom object/field discovery, …), tier, discovery type, and any tenant-specific feature flags.

Argumente

NameErforderlichZweck
<connector-key>jaConnector-Schlüssel, z. B. uipath-salesforce-sfdc.

Optionen

Keine über die globalen Optionen hinaus.

Beispiel

uip is connectors metadata uipath-salesforce-sfdc
uip is connectors metadata uipath-salesforce-sfdc

Datenform (--output json)

{
  "Code": "ConnectorMetadata",
  "Data": [
    {
      "Key": "uipath-salesforce-sfdc",
      "Name": "Salesforce",
      "Description": "CRM",
      "Vendor": "Salesforce",
      "Version": "1.0.0",
      "DiscoveryType": "dynamic",
      "Tier": "1",
      "IsActive": true,
      "IsPrivate": false,
      "IsOwner": true,
      "HasEvents": true,
      "HasCRUDs": true,
      "HasMethods": false,
      "HasSearchMethods": false,
      "HasHttpRequest": true,
      "HasExtensions": false,
      "HasObjectDiscovery": true,
      "HasFieldDiscovery": true,
      "HasCustomObjectDiscovery": true,
      "HasCustomFieldDiscovery": true,
      "DapCompatible": true,
      "UnifiedTypesCompatible": false,
      "HideActivities": false,
      "ShouldLocaliseOnlyCurated": false,
      "Flags": {}
    }
  ]
}
{
  "Code": "ConnectorMetadata",
  "Data": [
    {
      "Key": "uipath-salesforce-sfdc",
      "Name": "Salesforce",
      "Description": "CRM",
      "Vendor": "Salesforce",
      "Version": "1.0.0",
      "DiscoveryType": "dynamic",
      "Tier": "1",
      "IsActive": true,
      "IsPrivate": false,
      "IsOwner": true,
      "HasEvents": true,
      "HasCRUDs": true,
      "HasMethods": false,
      "HasSearchMethods": false,
      "HasHttpRequest": true,
      "HasExtensions": false,
      "HasObjectDiscovery": true,
      "HasFieldDiscovery": true,
      "HasCustomObjectDiscovery": true,
      "HasCustomFieldDiscovery": true,
      "DapCompatible": true,
      "UnifiedTypesCompatible": false,
      "HideActivities": false,
      "ShouldLocaliseOnlyCurated": false,
      "Flags": {}
    }
  ]
}
Hinweis:

The command exposes every boolean property the catalog returns for a connector, not just the fixed set shown above — a new capability flag added to the catalog appears here automatically, without waiting on a CLI release.

uip is connectors swagger

Fetch the OpenAPI (Swagger) document describing a connector element's operations.

Argumente

NameErforderlichZweck
<connector-key>jaConnector-Schlüssel.

Optionen

LongWertBeschreibung
--versiontextElement version. Omit to use the connector's default/latest version.

Beispiel

uip is connectors swagger uipath-zoho-desk
uip is connectors swagger uipath-zoho-desk

Datenform (--output json)

{
  "Code": "ElementSwagger",
  "Data": {
    "openapi": "3.0.1",
    "info": {
      "title": "Zoho Desk",
      "version": "1.0.0"
    }
  }
}
{
  "Code": "ElementSwagger",
  "Data": {
    "openapi": "3.0.1",
    "info": {
      "title": "Zoho Desk",
      "version": "1.0.0"
    }
  }
}

Data is the raw OpenAPI document returned by the catalog — its shape follows the OpenAPI spec, not this CLI's usual PascalCase envelope conventions.

uip is connectors event-operations

List the event operations a connector element supports (the operations available to uip is triggers for that connector).

Argumente

NameErforderlichZweck
<connector-key>jaConnector-Schlüssel.

Optionen

LongWertBeschreibung
--versiontextElement version. Omit to use the connector's default/latest version.

Beispiel

uip is connectors event-operations uipath-zoho-desk
uip is connectors event-operations uipath-zoho-desk

Datenform (--output json)

{
  "Code": "ElementEventOperationList",
  "Data": [
    { "name": "CREATED", "displayName": "Created" }
  ]
}
{
  "Code": "ElementEventOperationList",
  "Data": [
    { "name": "CREATED", "displayName": "Created" }
  ]
}

An empty result still succeeds, with Instructions: "No event operations found for connector '<connector-key>'.".

uip is connectors audit-logs

List audit log entries recorded for a connector element version (schema changes, publishes, and similar catalog-side events).

Argumente

NameErforderlichZweck
<connector-key>jaConnector-Schlüssel.

Optionen

LongWertBeschreibung
--versiontextRequired. Element version to fetch audit logs for.
--limitNummerSeitengröße.
--next-pageTokenCursor from a previous response, to fetch the next page.

Beispiel

uip is connectors audit-logs uipath-zoho-desk --version 1.0.0 --limit 50
uip is connectors audit-logs uipath-zoho-desk --version 1.0.0 --limit 50

Datenform (--output json)

{
  "Code": "ElementAuditLogList",
  "Data": [
    { "changeType": "Updated", "user": "user@example.com" }
  ]
}
{
  "Code": "ElementAuditLogList",
  "Data": [
    { "changeType": "Updated", "user": "user@example.com" }
  ]
}

An empty result still succeeds, with Instructions: "No audit logs found for connector '<connector-key>' version '<version>'.".

uip is connectors export

Export a connector element's package to a local file.

Argumente

NameErforderlichZweck
<connector-key>jaConnector-Schlüssel.

Optionen

LongWertBeschreibung
--output-filePfadRequired. Destination file path.
--versiontextElement version. Omit to use the connector's default/latest version.

Beispiel

uip is connectors export uipath-zoho-desk --output-file ./uipath-zoho-desk.zip
uip is connectors export uipath-zoho-desk --output-file ./uipath-zoho-desk.zip

Datenform (--output json)

{
  "Code": "ElementExported",
  "Data": {
    "ConnectorKey": "uipath-zoho-desk",
    "Version": "",
    "OutputFile": "/work/uipath-zoho-desk.zip",
    "Bytes": 1024
  }
}
{
  "Code": "ElementExported",
  "Data": {
    "ConnectorKey": "uipath-zoho-desk",
    "Version": "",
    "OutputFile": "/work/uipath-zoho-desk.zip",
    "Bytes": 1024
  }
}

Version echoes back whatever --version was passed (empty string if omitted) — it does not resolve to the actual exported version number.

  • uip is connections – Erstellen Sie OAuth-Sitzungen für die hier erkannten Connectors.
  • uip is activities – listet die Vorgänge auf, die ein Connector verfügbar macht.
  • uip is resources — describe and run a connector's data-plane objects.
  • uip is triggers — event-driven connector operations, backed by event-operations above.

Siehe auch

War diese Seite hilfreich?

Verbinden

Benötigen Sie Hilfe? Support

Möchten Sie lernen? UiPath Academy

Haben Sie Fragen? UiPath-Forum

Auf dem neuesten Stand bleiben