broadcasts
Schedule broadcast for later
Schedule a draft broadcast to be sent at a future date and time.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
broadcastIdstring
scheduledAtstring
Format
date-timeResponse 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.scheduleBroadcast({ path: { broadcastId: 'broadcast_abc123', }, body: { scheduledAt: '2026-01-15T10:00:00Z', },});console.log(data);{
"success": true,
"broadcast": {
"id": "string",
"status": "string",
"scheduledAt": "2019-08-24T14:15:22Z"
}
}Empty
{
"error": "Unauthorized"
}{
"error": "Not found"
}