You can send any customer activities performed by users in your mobile app to HelpCrunch.
For example, you could track how users navigate in your mobile app, what screens users visit, what goods they have added to their shopping cart, what goods they 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.
ObjC:
[HelpCrunch trackEvent:@"eventName"];
or
[HelpCrunch trackEvent:@"eventName" data:@{@"tariff" : @23,
@"name" : @"Sam",
@"age" : @41}];
Swift:
HelpCrunch.trackEvent("eventName")
or
HelpCrunch.trackEvent("eventName" data:["tariff" : @23,
"name" : "Sam",
"age" : 41])
Once you start sending this data to HelpCrunch, events will be tracked and shown in a customer's profile with the most recent events on top:

In various subscription plans, the duration for which event history is retained varies:
Basic plan - 30 days
Pro plan - 60 days
Unlimited plan - 90 days
Basic plan - 30 days
Pro plan - 60 days
Unlimited plan - 90 days