Webhooks


Receive real-time notifications about message delivery events by configuring webhook endpoints.

🚧

Webhooks are coming soon. This page will be updated with configuration instructions, event types, and payload schemas when the feature launches.

Overview

Webhooks allow your application to receive HTTP callbacks when events occur, such as:

  • A message is delivered to the recipient
  • A message delivery fails
  • A recipient replies to your message
  • A broadcast job completes

How it will work

  1. Register a webhook URL in your dashboard
  2. The API sends a POST request to your URL when events occur
  3. Your endpoint processes the event and returns a 200 response
  4. Failed deliveries are retried with exponential backoff

Planned event types

EventDescription
message.deliveredMessage was successfully delivered to the recipient's device
message.failedMessage delivery failed
message.repliedRecipient sent a reply to your message
broadcast.completedAll messages in a broadcast job have been processed

Stay tuned for updates.