Zernio
Zernio
API Reference

Broadcasts

List broadcast recipientsGETList broadcastsGETCreate broadcast draftPOSTGet broadcast detailsGETUpdate broadcastPATCHDelete broadcastDELETEAdd recipients to a broadcastPOSTCancel broadcastPOSTSchedule broadcast for laterPOSTSend broadcast nowPOST
Dashboard
llms.txtOpenAPI
OverviewPlatformsAPI ReferenceResources
Broadcasts

List broadcast recipients

Returns recipients for a broadcast with individual delivery status. Filter by status.


GET
/v1/broadcasts/{broadcastId}/recipients

Authorization

bearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

broadcastId*string

Query Parameters

status?string

Value in

  • "pending"
  • "sent"
  • "delivered"
  • "read"
  • "failed"
limit?integer
Default50
skip?integer
Default0

Response Body

application/json

application/json

application/json

{  "success": true,  "recipients": [    {      "id": "string",      "contactId": "string",      "channelId": "string",      "platformIdentifier": "string",      "contactName": "string",      "status": "pending",      "messageId": "string",      "error": "string",      "errorCode": 0,      "errorExplanation": "string",      "errorTraceId": "string",      "sentAt": "2019-08-24T14:15:22Z",      "deliveredAt": "2019-08-24T14:15:22Z",      "readAt": "2019-08-24T14:15:22Z"    }  ],  "pagination": {    "total": 0,    "limit": 0,    "skip": 0,    "hasMore": true  },  "summary": {    "total": 0,    "pending": 0,    "sent": 0,    "delivered": 0,    "read": 0,    "failed": 0  }}
Was this page helpful?

Reply to a mention

Reply to a mention of the connected account. Supported on Instagram only. Two shapes, selected by whether `commentId` is present: - **Comment mention** (someone @mentioned the account inside a comment): pass both `mediaId` and `commentId`. Instagram posts a reply under that comment. - **Caption mention** (someone @mentioned the account in their media caption, so no comment exists): pass `mediaId` only. Instagram posts a comment on their media. Story mentions are not supported by Instagram's API. `GET /v1/inbox/mentions` currently returns LinkedIn mentions only and does not surface Instagram mentions. Source `mediaId` and `commentId` from Instagram's `comments` webhook, which is where mention notifications are delivered for accounts connected through Instagram Login.

List broadcasts

Returns broadcasts with delivery stats. Filter by status, platform, or profile.