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
Mackenly
Mackenly2d ago
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:
zaraz.set('product_name', 't-shirt', {scope: 'session'})
zaraz.track("purchase", { value: 200, currency: "USD" });
zaraz.set('product_name', 't-shirt', {scope: 'session'})
zaraz.track("purchase", { value: 200, currency: "USD" });
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-properties
Andreas
AndreasOP2d ago
Thanks for the pointer

Did you find this page helpful?