List recipients
List recipients of a broadcast with their delivery status. Supports filtering by delivery status and pagination.
API key authentication - use your Late API key as a Bearer token
In: header
Path Parameters
Broadcast ID
Query Parameters
Filter by recipient delivery status
"pending" | "sent" | "delivered" | "read" | "failed"Maximum results (default 100)
100Offset for pagination
0Response Body
application/json
application/json
application/json
curl -X GET "https://getlate.dev/api/v1/whatsapp/broadcasts/string/recipients"{
"success": true,
"recipients": [
{
"phone": "string",
"name": "string",
"variables": {},
"status": "pending",
"messageId": "string",
"error": "string",
"sentAt": "2019-08-24T14:15:22Z",
"deliveredAt": "2019-08-24T14:15:22Z",
"readAt": "2019-08-24T14:15:22Z"
}
],
"pagination": {
"total": 0,
"limit": 0,
"skip": 0,
"hasMore": true
},
"summary": {
"total": 0,
"pending": 0,
"sent": 0,
"delivered": 0,
"read": 0,
"failed": 0
}
}{
"error": "Unauthorized"
}{
"error": "Not found"
}Create template POST
Create a new message template. Supports two modes: **Custom template:** Provide `components` with your own content. Submitted to Meta for review (can take up to 24h). **Library template:** Provide `library_template_name` instead of `components` to use a pre-built template from Meta's template library. Library templates are **pre-approved** (no review wait). You can optionally customize parameters and buttons via `library_template_body_inputs` and `library_template_button_inputs`. Browse available library templates at: https://business.facebook.com/wa/manage/message-templates/
Get broadcast GET
Retrieve detailed information about a single broadcast including delivery statistics.