Zernio
Zernio
API Reference

Contacts

List contactsGETCreate contactPOSTList channels for a contactGETGet contactGETUpdate contactPATCHDelete contactDELETEBulk create contactsPOST
Dashboard
llms.txtOpenAPI
OverviewPlatformsAPI ReferenceResources
Contacts

List channels for a contact

Returns all messaging channels linked to a contact (e.g. Instagram DM, Telegram, WhatsApp).


GET
/v1/contacts/{contactId}/channels

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication: send your Zernio API key in the Authorization header, prefixed with Bearer.

In: header

Path Parameters

contactId*string

Response Body

application/json

application/json

application/json

{  "success": true,  "channels": [    {      "id": "string",      "accountId": "string",      "platform": "string",      "platformIdentifier": "string",      "displayIdentifier": "string",      "isSubscribed": true,      "conversationId": "string",      "metadata": {},      "createdAt": "2019-08-24T14:15:22Z"    }  ]}
Was this page helpful?

Create contact

Create a new contact. Optionally create a platform channel in the same request by providing accountId, platform, and platformIdentifier.

Get contact

Returns a contact with all associated messaging channels.