Skip to main content
With the API you ask; with webhooks Notifique notifies. Ideal to mark an order delivered or process a customer reply without polling.

In brief

  • Every delivery is a POST application/json to your registered URL.
  • sms.* events are SMS only, WhatsApp uses message.*.
  • instanceId is always empty (SMS does not use instances).
  • Enable only the events your integration needs.
  • Reply 2xx quickly; heavy work goes to a queue on your side.
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? Reply 200 immediately and process in the background. Over ~10 s counts as timeout and the event may be redelivered.
Validate X-Notifique-Signature and a recent timestamp. Details: Webhook security.

Event reference

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

Send and status

Inbound messages (MO)

MO follows inbound rules in Settings → Received messages, like other channels. Guide: Inbound messages.

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 click on a tracked short link from this SMS.
When the MO is linked to your outbound send (e.g. poll reply).

Next steps