Sazabi
APIIntegrations

Get an integration connection

GET
/integrations/connections/{connectionId}

Get one integration connection by ID (non-secret config only).

Path Parameters

connectionId*string

Connection ID to fetch.

Formatuuid

Query Parameters

organizationId?string

Organization the connection belongs to. Auto-filled from CLI and SDK context when omitted. User tokens must supply it unless the credential's fixed scope resolves it; secret keys may omit it (the key's organization applies).

Length1 <= length

Response Body

application/json

curl -X GET "https://example.com/integrations/connections/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "connection": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "provider": "slack",    "displayName": "string",    "status": "pending",    "isActive": true,    "needsAttention": true,    "metadata": {      "property1": null,      "property2": null    },    "healthStatus": "healthy",    "healthMessage": "string",    "healthCheckedAt": "2019-08-24T14:15:22Z",    "healthConsecutiveFailures": -9007199254740991,    "connectedBy": "string",    "createdAt": "2019-08-24T14:15:22Z",    "updatedAt": "2019-08-24T14:15:22Z"  }}