Subscribe a Workflow or Agent to an Event
Route incoming events to a workflow or autonomous agent
A subscription binds an event source to a workflow or agent. Each subscription is org-scoped and maps fields from the inbound payload into the workflow or agent input.
Workflow vs Agent Targets
Section titled “Workflow vs Agent Targets”| Target | When to use |
|---|---|
| Workflow | Deterministic logic — log a ticket, update a record, fan out to other systems. |
| Agent | LLM-driven triage — classify the event, decide a route, draft a response. The full payload is exposed as _event in the agent’s context. |
Add a Subscription
Section titled “Add a Subscription”-
Open the event source and click Add Subscription.

-
Pick Workflow or Agent, choose the target, and map payload fields into the target’s input parameters using
{{ payload.<field> }}expressions.
-
Save. The next inbound event matching this source dispatches the target. Recent deliveries appear in the source’s delivery log.
Next Steps
Section titled “Next Steps”- Webhook HMAC Authentication — verify the request before dispatching.
- Webhook & Event Variables — payload reference and template expressions.