Fluxyn Docs
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

PropertyTypeRequiredDetails
eventName
eventName
stringRequiredEvent name to listen for (e.g. 'page_view').
useRegex
useRegex
booleanOptionalUse Regular Expression for event name matching
oncePerPage
oncePerPage
booleanOptionalFire 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.

Related nodes