v24

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-014382230.2 KB

Send broadcast to individual

Sends a broadcast to a single recipient for testing purposes. Optionally specify which template variation to send.

post/api/broadcasts.sendToIndividual

Request body

workspace_idstring required

The ID of the workspace

broadcast_idstring required

ID of the broadcast

recipient_emailstring email required

Email address to send test to

template_idstring

Optional specific template variation to send

Example request

{
  "workspace_id": "ws_1234567890",
  "broadcast_id": "broadcast_12345",
  "recipient_email": "test@example.com",
  "template_id": "template_variant_a"
}

Response

Broadcast sent to individual successfully

successboolean

Example response

{
  "success": true
}