Track custom events

Know how users navigate in your web or mobile app, what pages users visit.
Written by Konstantine
Updated 2 months ago

You can send HelpCrunch any customer activities performed by users in your web or mobile app. For example, you could track how users navigate in your web or mobile app, what pages users visit, what goods users have added to their shopping cart, what goods users have purchased in your app, etc. You can submit an event using the trackEvent method. This will associate the event with the currently logged in user and send it to HelpCrunch.

var eventName = 'Track data';
var data = {
  tariff: 23,
  name: 'Sam',
  age: 41
};
HelpCrunch('trackEvent', eventName, data);

Once you’re sending HelpCrunch this data, events will be tracked and shown in customer profile in order as it happens:

By default, HelpCrunch widget tracks user navigation by “Page View” events.

Did this answer your question?