- Überblick
- Erste Schritte
- Konzepte
- Verwenden der UiPath CLI
- Anleitungen
- CI/CD-Rezepte
- Befehlsreferenz
- Überblick
- Exitcodes
- Globale Optionen
- UIP-codierter Agent
- uip coder
- uip context-grounding
- UIP-Dokumentation
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Add-Test-Data-Entität
- Add-Test-Data-Queue
- Add-Test-Data-Variation
- Analysieren
- Erstellen
- Ein Projekt erstellen
- Diff
- Suchaktivitäten
- Get-Analyse-Regeln
- get-standard-aktivität-xaml
- Fehler abrufen
- Manuelle-Testfälle erhalten
- Manuelle-Testschritte erhalten
- get-library-object-repository
- get-object-repository
- Get-Versionen
- Beispiel für einen Workflow abrufen
- Anwendung anzeigen
- Anzeigeelement
- Inspektionspaket
- install-data-fabric-entities
- Pakete installieren oder aktualisieren
- list-data-fabric-entities
- list-instances
- Beispiele für Listenworkflows
- Packen
- Veröffentlichen
- remote
- restore
- run, debug & execution
- Ausführungsdatei installieren
- Suchvorlagen
- Studio starten
- Ausführung anhalten
- tm
- UIA
- uip tasks
- UIP-Ablaufverfolgungen
- uip traces feedback
- Migration
- Referenz und Support
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
| Verb | Zweck |
|---|---|
list | Listen Sie die für den Mandanten verfügbaren Connectors auf; Optional nach Name oder Schlüssel filtern. |
get | Vollständige Details für einen Connector nach Schlüssel abrufen. |
metadata | Fetch a connector's discovery metadata (capability flags, tier, discovery type). |
swagger | Fetch the OpenAPI document for a connector element. |
event-operations | List the event operations a connector element supports. |
audit-logs | List audit log entries for a connector element version. |
export | Export 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
| Short | Long | Wert | Standard | Beschreibung |
|---|---|---|---|---|
-f | --filter | text | – | Teilzeichenfolge stimmt mit Connector-Name oder -Schlüssel überein. |
| – | --refresh | Markieren | aus | Erzwingen 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
| Name | Erforderlich | Zweck |
|---|---|---|
<connector-key> | ja | Connector-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
| Name | Erforderlich | Zweck |
|---|---|---|
<connector-key> | ja | Connector-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": {}
}
]
}
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
| Name | Erforderlich | Zweck |
|---|---|---|
<connector-key> | ja | Connector-Schlüssel. |
Optionen
| Long | Wert | Beschreibung |
|---|---|---|
--version | text | Element 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
| Name | Erforderlich | Zweck |
|---|---|---|
<connector-key> | ja | Connector-Schlüssel. |
Optionen
| Long | Wert | Beschreibung |
|---|---|---|
--version | text | Element 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
| Name | Erforderlich | Zweck |
|---|---|---|
<connector-key> | ja | Connector-Schlüssel. |
Optionen
| Long | Wert | Beschreibung |
|---|---|---|
--version | text | Required. Element version to fetch audit logs for. |
--limit | Nummer | Seitengröße. |
--next-page | Token | Cursor 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
| Name | Erforderlich | Zweck |
|---|---|---|
<connector-key> | ja | Connector-Schlüssel. |
Optionen
| Long | Wert | Beschreibung |
|---|---|---|
--output-file | Pfad | Required. Destination file path. |
--version | text | Element 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.
Zugehörig
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 byevent-operationsabove.
Siehe auch
- Zusammenfassung
- Verben
- UIP ist Connectors-Liste
- Optionen
- Beispiele
- Datenform (--output json)
- UIP ist Connectors abrufen
- Argumente
- Optionen
- Beispiele
- Datenform (--output json)
- uip is connectors metadata
- Argumente
- Optionen
- Beispiel
- Datenform (--output json)
- uip is connectors swagger
- Argumente
- Optionen
- Beispiel
- Datenform (--output json)
- uip is connectors event-operations
- Argumente
- Optionen
- Beispiel
- Datenform (--output json)
- uip is connectors audit-logs
- Argumente
- Optionen
- Beispiel
- Datenform (--output json)
- uip is connectors export
- Argumente
- Optionen
- Beispiel
- Datenform (--output json)
- Zugehörig
- Siehe auch