Skip to content

Triggers & Events

Use when: An external system should call Auteryn when something happens.

When you create a webhook trigger, Auteryn gives you a unique URL:

https://hooks.auteryn.ai/v1/flows/{flow-id}/webhook

Configure your external service to POST to this URL on the relevant event.

Security: Every webhook URL has a secret for request verification. Set the secret in the external service — Auteryn rejects requests with invalid signatures.


Payload format

All webhook and event triggers receive a JSON payload. The full payload is accessible via {{event.raw}}.

Example — GitHub issue opened:

{
"action": "opened",
"issue": {
"number": 42,
"title": "Login button not responding on mobile",
"body": "Steps to reproduce...",
"html_url": "https://github.com/acme/app/issues/42",
"user": { "login": "alice" }
},
"repository": {
"name": "app",
"full_name": "acme/app"
}
}