Sazabi
APIIntegrations

Get a connect attempt

GET
/integrations/connect/attempts/{attemptId}

Poll a browser connect attempt started with integrations.beginConnect. Visible only to the user who began it.

Path Parameters

attemptId*string

Connect attempt ID to poll.

Formatuuid

Query Parameters

organizationId?string

Organization the attempt 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/connect/attempts/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "status": "pending",  "errorCode": "string",  "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"  }}