Skip to main content
POST
/
v1
/
broadcasts
/
{id}
/
send
Send Broadcast
curl --request POST \
  --url https://api.example.com/v1/broadcasts/{id}/send \
  --header 'Content-Type: application/json' \
  --data '
{
  "scheduled_for": "<string>"
}
'
id
string
required
The ID of the broadcast to send.
scheduled_for
string
ISO 8601 datetime to schedule the broadcast. Omit to send immediately.

Request

cURL
curl -X POST https://www.unosend.co/api/v1/broadcasts/bc_123/send \
  -H "Authorization: Bearer un_xxxxxxxxxx"

Response

200
{
  "id": "bc_123",
  "status": "sending",
  "recipient_count": 1250
}
The broadcast will be sent to all subscribed contacts in the audience.