Skip to main content
With the API you ask; with webhooks Notifique tells you. Great for marking campaigns as delivered or measuring button clicks, without polling.

In brief

  • Every delivery is a POST application/json to your registered URL.
  • rcs.* events are RCS only, SMS uses sms.*, WhatsApp uses message.*.
  • instanceId is empty (RCS does not use a channel instance).
  • 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


Payload per event

Fires on the first tracked short-link or button click for this send.
Best practice: trigger fallback (SMS, email) when the number does not support RCS.

Next steps