Webhooks
Overview
This section explains how to set up webhook endpoints to receive:
Inbound Messages (text, media, interactive, etc.)
Optional Message Status Updates (e.g., delivered, read, failed)
Having both webhooks enabled ensures you can process incoming customer messages and track the lifecycle of messages you send.
Inbound Message Webhooks
Configuring the Inbound Webhook
Navigate to Settings
In your application or developer dashboard, set the Inbound Webhook URL (e.g., https://example.com/webhook/whatsapp/inbound
).
Receive Webhooks
All incoming WhatsApp messages (new messages and replies) will trigger a POST to your inbound webhook URL.
Supported Inbound Message Types
Inbound messages can contain various content types:
Text
Media (image, video, audio, document)
Sticker
Location
Contact
Interactive
List response
Button response
Check the type
field in the webhook payload to determine what the user has sent.
Sample Webhooks Incoming Messages
Message Status Callbacks
What Are Status Callbacks?
When you send a message or manage a template, our service can notify your application of changes via HTTP POST requests to a separate webhook URL. There are two main categories:
Message Delivery Status: Track whether your outbound message was sent, delivered, read, or failed.
Template Status: Track changes in your message template approval status (e.g., approved, rejected, paused).
Configuring Status Callbacks
Navigate to Settings: Set the Status Callback URL (e.g.,https://example.com/webhook/whatsapp/status
).
Possible status values include:
SENT
DELIVERED
READ
DELETED
FAILED
Sample JSON: Message Delivery Status
For outbound messages, the messageId corresponds to the ID included in the request
Template Status Updates
We also send callbacks when your WhatsApp message templates change status. Possible status values include:
APPROVED: The template is approved and ready for use.
REJECTED: The template has been denied—check for policy violations.
PAUSED: The template is temporarily suspended, often pending manual review.
statusDescription will contain the reason why a template has been rejected or paused.
Sample JSON: Template Status Update
Last updated