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

Get broadcast details

Returns a broadcast with its full configuration and delivery stats.


GET
/v1/broadcasts/{broadcastId}

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

Response Body

application/json

application/json

application/json

{  "success": true,  "broadcast": {    "id": "string",    "name": "string",    "description": "string",    "platform": "string",    "accountId": "string",    "message": {      "text": "string"    },    "template": {      "name": "string",      "language": "string"    },    "segmentFilters": {      "tags": [        "string"      ]    },    "status": "draft",    "scheduledAt": "2019-08-24T14:15:22Z",    "startedAt": "2019-08-24T14:15:22Z",    "completedAt": "2019-08-24T14:15:22Z",    "recipientCount": 0,    "sentCount": 0,    "deliveredCount": 0,    "readCount": 0,    "failedCount": 0,    "createdAt": "2019-08-24T14:15:22Z",    "updatedAt": "2019-08-24T14:15:22Z"  }}
Was this page helpful?

Create broadcast draft

Create a broadcast in draft status. Add recipients and then send or schedule it.

Update broadcast

Update a broadcast's name, message, template, or segment filters. Only draft broadcasts can be updated.