Skip to main content
With the API you ask; with webhooks Notifique tells you. Great for real-time inbox, sync edits, or react when the session drops, without polling.

In brief

  • Every delivery is a POST application/json to your registered URL.
  • instagram.* events are Instagram only, WhatsApp uses message.*, Telegram uses telegram.*.
  • instanceId identifies the Instagram connection.
  • Enable only the events your integration needs.
  • Respond 2xx quickly; heavy processing goes to your queue.
General setup: Webhooks. Security (HMAC signature): Webhook security.

How the POST looks

Headers: X-Notifique-Signature, X-Notifique-Timestamp, X-Workspace-Id, X-Webhook-Event.

What your server should return

Slow processing? Return 200 immediately and process in the background.

Event reference

Messages you send

Messages you receive

Connection (instance)


Payload per event


Next steps