An event is a user action that you consider important (for example, making an order, registering, paying a subscription, visiting a page with tariffs, visiting a product page, etc.)
You can send an event with our name into our system. Events beginning with the dollar symbol are system reserved names:
System key | Attributes | Purpose |
---|---|---|
$registered |
$name : User name, $phone : User phone, $email : User email, $user_id : Your unique id for this user |
Record user registration in the personal account. For funnels, segmentation, welcome/onboarding |
Frontend (JS API)
dashly.track('$registered', {
'$name': 'Chris',
'$phone': '9876543210',
'$email': 'chris@email.io',
'$user_id': '123qwe'
});