Skip to main content
With the API you ask; with webhooks Notifique notifies. Ideal for pausing external campaigns, opening support tickets, or auditing runs without polling.

In short

  • Every delivery is a POST with application/json to your registered URL.
  • automation.* events cover the definition (enable/disable) and runs (executions).
  • instanceId is empty (automations belong to the workspace, not a channel).
  • Enable only the events your integration uses.
  • Respond 2xx quickly; heavy processing goes to a queue on your side.
General setup: Webhooks.
This is an outbound webhook (Notifique → your server). To trigger an automation with a POST from your system, configure the HTTP trigger in the automation editor or use Events.

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

Automation definition

Run (execution)


Payload per event


Next steps