In short
- Every delivery is a POST with
application/jsonto your registered URL. automation.*events cover the definition (enable/disable) and runs (executions).instanceIdis 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.
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
automation.disabled
automation.disabled
automation.run.completed
automation.run.completed

