JavaScript
Properties
When to Fire
- When user completes onboarding checklist
- When user performs first key action
- When user reaches engagement threshold
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Track when a user reaches an activation milestone within the product.
window._upstack('track', 'user_activated', {
userId: 'usr_xyz789',
accountId: 'acct_abc123',
userEmail: 'user@acme.com',
activationMilestone: 'completed_onboarding',
daysToActivation: 2
});
| Property | Type | Required | Description |
|---|---|---|---|
| userId | string | Yes | User identifier |
| accountId | string | Yes | Account identifier |
| userEmail | string | No | User email address |
| activationMilestone | string | No | Which milestone was reached |
| daysToActivation | number | No | Days from signup to activation |
Was this page helpful?