Skip to main content
With the API you ask; with webhooks Notifique tells you. Ideal to mark campaigns delivered or measure button clicks without polling.

In short

  • Every delivery is a POST application/json to your registered URL.
  • rcs.* events are RCS only; SMS uses sms.*, WhatsApp uses message.*.
  • instanceId carries the RCS agent ID when the send used a branded instance; empty on shared sender.
  • Enable only the events your integration uses.
  • Respond 2xx quickly; heavy processing goes to your queue.
General setup: Webhooks. Security (HMAC signature): Webhook security.

POST shape

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 background.

Event reference


Payload per event

Fired 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