Webhooks
Real-time events for message status updates.
Webhooks allow your application to receive real-time notifications when an SMS status changes (e.g. from Sent to Delivered or Failed).
Configuration
Go to your Project Settings and enter a destination URL. We will send a POST request to this URL for every event.
Payload Example
{
"event": "message.updated",
"payload": {
"id": "msg_12345",
"status": "delivered",
"to": "+1234567890",
"timestamp": "2024-01-01T12:00:00Z"
}
}