The Launch documentation suggests that the _satellite.track() function can be used to pass along extra information in the syntax:
_satellite.track('contact_submit', { name: 'John Doe' });
However when I access this detail object using %event.detail%, the element is resolved as "[object Object]"
Have I done something wrong or is this an error in the documentation?
Solved! Go to Solution.
Views
Replies
Total Likes
Can you try using %event.detail.name% to access the detail passed in _satellite.track() function ?
Can you try using %event.detail.name% to access the detail passed in _satellite.track() function ?
As AtulSingh mentioned above, you're getting [object Object] because the result is not a single string value, but rather an Object = { name: 'John Doe' }
If you want to get the value 'John Doe' , you can use %event.detail.name% to retrieve the value of name.
Ah perfect, yup that works! Thanks
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Like
Replies