Skip to main content
With the API you ask; with webhooks Notifique tells you. Great for marking orders delivered, measuring opens, or suppressing complainers, without polling.

In brief

  • Every delivery is a POST application/json to your registered URL.
  • email.* events are email only, WhatsApp uses message.*, SMS uses sms.*.
  • instanceId is empty (email does not use an 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. Above ~10 s counts as timeout and the event may be resent.
Validate X-Notifique-Signature and a recent timestamp. Details: Webhook security.

Event reference

Use these events when integrating e-commerce, ERP, or automation with email.

Send and engagement


Payload per event

Full POST body. The envelope (event, ids, timestamp) matches the example above; below is what changes in data.
Fires on the first tracked open for this send.
Fires on the first click on a tracked link (or assigned short link).
Best practice: add to to a suppression list when you receive this event.

Next steps