Skip to main content
A webhook is the doorbell on your server: when something changes at Notifique, the API rings with a JSON POST to your URL.

What is it?

An HTTPS URL on your system that receives automatic notifications: message sent, delivered, customer reply, instance disconnected, short link click… With Platform API you create, edit, and audit webhooks via /v1/webhooks and /v1/webhooks/deliveries.

When to use?

Register via API

Scopes: webhooks:read and webhooks:manage.
Save the secret from the response to validate X-Notifique-Signature.

Validate signature

Each POST includes X-Notifique-Signature and X-Notifique-Timestamp. Compute HMAC-SHA256 of the secret with {timestamp}.{raw body} and reject timestamps outside 5 minutes.

Deliveries and resend

List filters: success, event, webhook_id, message_id, search. Full guide and event list: Webhooks (full guide).

Next steps