Broadcasts
Retrieve a broadcast
Get one broadcast with a count of its emails by status.
GET
/v1/broadcasts/{id}API keyReturns the broadcast plus counts: how many of the emails it created are in each status. Poll this while a broadcast is sending to follow its progress.
Every email a broadcast sends carries the tag broadcast_id, so you can also list them with List emails and tag=broadcast_id:bc_….
Path parameters
The broadcast ID, for example bc_01K6C3D9G2J4L7N0Q3S5U8W1YZ.
Response
The broadcast, with the fields described in Create a broadcast, and:
countsRecord<string, number>
Email status to number of emails, for example { "delivered": 39, "bounced": 1, "sent": 1 }. Only statuses that have at least one email are listed. See Email statuses.
Errors
| Status | Code | When |
|---|---|---|
| 404 | broadcast_not_found | No broadcast with that ID in this project. |