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
- Add a Click Trigger node.
- Choose selectors that match the element you care about.
- Add a Transform node to clean up the values you want to keep.
- 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.