In brief
- Every delivery is a POST
application/jsonto the URL you registered. message.*andinstance.*events are WhatsApp only (Telegram usestelegram.*).- Enable only the events your integration needs.
- Reply 2xx quickly; heavy work goes to a queue on your side.
What the POST looks like
Standard envelope for every event:
Headers:
X-Notifique-Signature, X-Notifique-Timestamp, X-Workspace-Id.
What your server should return
Slow processing? Return 200 immediately and process in the background. Taking more than 10 seconds counts as a timeout and the event may be sent again.
X-Notifique-Signature and a recent timestamp. Details: Webhook security.
Event reference
Use these events when integrating bots, support, ERP, or automation on WhatsApp.The
message.* names are WhatsApp only. Telegram uses telegram.*: Telegram events.Messages you send
Messages you receive
Inbound only fires if enabled under Settings → Received messages (store and/or webhook). The legacy dashboard name
message.received still works: the body uses whatsapp.received.Instance (number connection)
The Quick Start refresh-code step can use this webhook instead of polling (
instance.qrcode).
Payload per event
Full POST body. The envelope (event, ids, timestamp) matches the example above; below is what changes in data.
message.sent
message.sent
message.delivered
message.delivered
message.read
message.read
message.clicked
message.clicked
Fired on the first click on a short link in the send (workspace with short links enabled).
message.failed
message.failed
whatsapp.received
whatsapp.received
message.responded
message.responded
message.deleted
message.deleted
message.edited
message.edited
newContent may be null when unavailable.message.updated
message.updated
message.cancelled
message.cancelled
whatsapp.inbound.edited
whatsapp.inbound.edited
whatsapp.inbound.deleted
whatsapp.inbound.deleted
instance.qrcode
instance.qrcode
instance.connected
instance.connected
phoneNumber may be null in some cases.instance.disconnected
instance.disconnected
instance.connecting
instance.connecting
Next steps
- Quick Start: connect and send
- API Key scopes: permissions to read inbound
- Webhooks (guide): create endpoint and test

