Reputation: 265
I am using Google Analytics event tracking to track various events. for one f my use case i.e fr sign up page I want to track the details of the failed sign up user using Event tracking. Is this possible using Event tracking.
The syntax for event tracking is,
ga('send', 'event', [eventCategory], [eventAction], [eventLabel], [eventValue], [fieldsObject]);
I tried to pass the user data as below,
ga('send', 'event', 'Videos', 'play',{ 'email' : '[email protected]' })
but this did not worked.
Upvotes: 0
Views: 507