Skip to content

Triggers & Events

Flows use one of two trigger types: event or schedule. GitHub, Slack, email, and webhooks are all event flows tied to a connection and trigger event — not separate trigger type pickers.

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

Verified integrations (GitHub, Slack, etc.) receive URLs like:

https://webhooks.auteryn.ai/webhook/in/v/{slug}/{connection_id}

Custom webhook connections use:

https://api.auteryn.ai/webhook/in/c/{token}

(Host may vary if your org sets WEBHOOK_BASE_URL.)

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


Event flows pass the incoming webhook or platform payload to the agent as context. You do not configure template variables like {{event.raw}} in the flow editor — the worker formats the payload automatically.

Example — GitHub issue opened (simplified):

{
"action": "opened",
"issue": {
"number": 42,
"title": "Login button not responding on mobile",
"body": "Steps to reproduce..."
},
"repository": {
"full_name": "acme/app"
}
}