Skip to main content
POST
/
whatsapp
/
broadcasts
/
{broadcast_id}
/
schedule
Schedule broadcast
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
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

broadcast_id
string<uuid>
required

Body

application/json
scheduled_at
string<date-time>
required

ISO-8601 timestamp with timezone. Must be in the future.

Response

Accepted

data
object
required