Skip to main content
POST
/
api
/
broadcasts.sendToIndividual
Send broadcast to individual
curl --request POST \
  --url https://{notifuseDomain}/api/broadcasts.sendToIndividual \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "workspace_id": "ws_1234567890",
  "broadcast_id": "broadcast_12345",
  "recipient_email": "test@example.com",
  "template_id": "template_variant_a"
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

API token for authentication

Body

application/json
workspace_id
string
required

The ID of the workspace

Example:

"ws_1234567890"

broadcast_id
string
required

ID of the broadcast

Example:

"broadcast_12345"

recipient_email
string<email>
required

Email address to send test to

Example:

"test@example.com"

template_id
string

Optional specific template variation to send

Example:

"template_variant_a"

Response

Broadcast sent to individual successfully

success
boolean
Example:

true