Fluxyn Docs
Tutorials

Track a Click Event

Capture a CTA click, reshape the payload, and send it to a destination.

Use this pattern when you want to measure clicks on a button, link, or important CTA.

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"}

Steps

  1. Add a Click Trigger node.
  2. Choose selectors that match the element you care about.
  3. Add a Transform node to clean up the values you want to keep.
  4. Add an HTTP node or a custom node call to send the event onward.

Why the transform step helps

Click payloads can include extra fields. A transform step lets you create a cleaner event shape before you send it somewhere else.

What to watch out for

  • Broad selectors can fire too often.
  • If click tracking is disabled in the application settings, the trigger will not run.
  • Use staging to confirm the selector matches the right element.

On this page