Fluxyn Docs
Examples

Examples

See complete example flows that match real Fluxyn use cases.

First flow

First flow

A simple event trigger that logs a message when your event arrives.

Configured properties

Debug / Log

Utility

message
message
{{ $.email }} started signup
level
level
info

Click tracking

Click tracking

Track a click event and forward it to an endpoint.

Configured properties

HTTP

Network

url
url
https://example.com/collect
method
method
POST
bodyType
bodyType
json
body
body
{"event":"click"}

Consent and blocker

Let a bypass event update consent and release the runtime blockers.

Configured properties

Update Blocker

Utility

action
action
release
targetBlockers
targetBlockers
[
  "consent"
]

Page state and conditions

Page state and conditions

Store values for later events, then branch based on those values.

Configured properties

If / Condition

Logic

conditions
conditions
[
  {
    "id": "country-is-us",
    "value1": "{{ $.user.country }}",
    "operator": "string:equals",
    "value2": "US"
  }
]
combinator
combinator
AND

GA4 with a custom node

GA4 custom node

Use a custom node to wrap vendor-specific tracking logic.

Configured properties

Custom Node Call

Custom Nodes

customNodeId
customNodeId
ga4-custom-node
function
function
event
measurement_id
measurement_id
G-XXXXXXX
event_name
event_name
cta_click
event_params
event_params
{
  "label": "{{ $.label }}"
}

On this page