List broadcast recipients
Returns recipients for a broadcast with individual delivery status. Filter by status.
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
Query Parameters
"pending" | "sent" | "delivered" | "read" | "failed"500Response Body
application/json
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.broadcasts.listBroadcastRecipients({ path: { broadcastId: 'broadcast_abc123', },});console.log(data);{
"success": true,
"recipients": [
{
"id": "string",
"contactId": "string",
"channelId": "string",
"platformIdentifier": "string",
"contactName": "string",
"status": "pending",
"messageId": "string",
"error": "string",
"errorCode": 0,
"errorExplanation": "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
}
}{
"error": "Unauthorized"
}{
"error": "Not found"
}Reply to a mention POST
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. Note that `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 GET
Returns broadcasts with delivery stats. Filter by status, platform, or profile.