curl --request POST \
--url https://api.kapso.ai/platform/v1/whatsapp/broadcasts/{broadcast_id}/schedule \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"scheduled_at": "2025-10-12T17:00:00Z"
}
'{
"data": {
"id": "5f6a7b8c-9d0e-1f2a-3b4c-5d6e7f8a9b0c",
"status": "scheduled",
"scheduled_at": "2025-10-12T17:00:00Z",
"started_at": null,
"completed_at": null
}
}Schedule a broadcast to send at a future time. The broadcast must be in draft status and have recipients.
curl --request POST \
--url https://api.kapso.ai/platform/v1/whatsapp/broadcasts/{broadcast_id}/schedule \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"scheduled_at": "2025-10-12T17:00:00Z"
}
'{
"data": {
"id": "5f6a7b8c-9d0e-1f2a-3b4c-5d6e7f8a9b0c",
"status": "scheduled",
"scheduled_at": "2025-10-12T17:00:00Z",
"started_at": null,
"completed_at": null
}
}Was this page helpful?