List all channel connections
List all channel connections for a resource.
Query parameters
Cursor for pagination indicating the starting point after which to fetch results.
Cursor for pagination indicating the ending point before which to fetch results.
Limit the number of items to return (max 100)
Direction of sorting
Field to order by
Include cursor item in response
The subscriber ID to filter results by
Scope results relative to the subscriber. subscriber returns only the subscriber-owned connections, shared returns only shared (workspace-level) connections. Omit to return both.
Filter by channel type (email, sms, push, chat, etc.).
Provider ID of the job
Filter by provider identifier (e.g., sendgrid, twilio, slack, etc.).
Filter by integration identifier.
Filter by exact context keys, order insensitive (format: "type:id")
Response
OK
Example response
{
"data": [
{
"providerId": "slack",
"integrationIdentifier": "slack-prod",
"subscriberId": "subscriber-123",
"contextKeys": [
"tenant:org-123",
"region:us-east-1"
],
"workspace": {
"id": "T123456",
"name": "Acme HQ",
"botUserId": "U0123456789"
},
"auth": {
"accessToken": "Workspace access token",
"refreshToken": "Workspace refresh token",
"expiresAt": "2026-06-15T12:00:00.000Z",
"refreshTokenExpiresAt": "2026-09-15T12:00:00.000Z"
}
}
]
}