Track Users
In order to correlate sessions and errors with customer, or to see a list of customers with all session details, it is helpful to capture and display customer information on your Growlytics dashboard.
Track User Attributes
Growlytics.user.push( {
city: 'San Francisco'
});User Login & Logout
Login User
Growlytics.user.identify('THE_USER_ID_IN_YOUR_APP', {
// Reserved customer properties (Used in campaigns)
name: 'John Wick',
email: '[email protected]',
mobile: '9876543210',
// Custom properties
subscriptionType: 'pro',
region: 'Mumbai',
totalPurchaseTillNow: 30000
});
Log Out
Last updated
Was this helpful?
