I am struggling a bit, as the Zaraz
I am struggling a bit, as the Zaraz documentation is not really helpful :/
I use the zaraz client to track an event like this:
window.zaraz.track("c", { value: decision });
And I have configured a trigger called "Decision", which fires of eventName == "c" and a Custom Html Tool where I want to use the value of the track event:
I tried the +Add Property which gave me the following expression:
{{ client.c }} which does not work...
{{ client.c.value }} also does not work...
2 Replies
When you add the property you need to use the property name. In your case it would be
value
. Think of the 2nd paramater to zaraz.track() as a javascript object that's provided to you as client
.
Here's an example:
Within the action (or other area where you can access an event's properties) you can grab things by pulling it off of the clinet like this using JSONata: {{ client.value }}
would pass 200
, {{ client.currency }}
would pass USD
, {{ client.product_name }}
would pass t-shirt
. Anything that's within scope set by a zaraz.set()
or passed over via zaraz.track()
can be accessed from the client
object.
See documentation here: https://developers.cloudflare.com/zaraz/reference/context/#event-propertiesThanks for the pointer