VUZDevelopers

Get paginated communication feed for a client

GET
/crm/communication/{clientId}/feed
X-Api-Key<token>

Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.

In: header

Path Parameters

clientId*string

Client UUID

Query Parameters

channels?array<>

Filter by channels

direction?string

Filter by direction: inbound or outbound

dateFrom?string

Return items on or after this datetime (ISO 8601)

dateTo?string

Return items on or before this datetime (ISO 8601)

limit?number

Number of items to return per page

Range1 <= value <= 100
Default20
cursor?string

Cursor for pagination (opaque base64 token from previous response)

Response Body

application/json

curl -X GET "https://example.com/crm/communication/string/feed"
{  "items": [    {      "id": "string",      "channel": "email",      "direction": "string",      "title": "string",      "preview": "string",      "content": "string",      "status": "string",      "occurredAt": "2019-08-24T14:15:22Z",      "metadata": {}    }  ],  "nextCursor": "string",  "hasMore": true}