NodesTriggers
Event Trigger
Starts a flow when a matching event name is pushed into the data layer.
Triggers
Use this when your website or app already pushes named events and you want Fluxyn to react to them.
When to use it
- You already have event names like purchase or signup_started.
- You want one flow to react to one named event.
Routing behavior
Continues through its connected downstream path when it completes successfully.
Properties
| Property | Type | Required | Details |
|---|---|---|---|
eventName eventName | string | Required | Event name to listen for (e.g. 'page_view'). |
useRegex useRegex | boolean | Optional | Use Regular Expression for event name matching |
oncePerPage oncePerPage | boolean | Optional | Fire only once per page for this trigger |
Common mistakes
- The event name must match exactly unless you enable regex.
- If the event never reaches the data layer, the flow will not start.