JavaScript
Properties
When to Fire
- After signup form submission succeeds
- After email verification completes
- After OAuth signup flow finishes
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 completes signup and creates an account in your SaaS application.
window._upstack('track', 'signup_completed', {
userId: 'usr_xyz789',
accountId: 'acct_abc123',
userEmail: 'jane@acme.com',
planId: 'plan_pro_monthly',
planName: 'Pro Plan'
});
| Property | Type | Required | Description |
|---|---|---|---|
| userId | string | Yes | New user identifier |
| accountId | string | Yes | New account identifier |
| userEmail | string | No | User email address |
| planId | string | No | Selected plan |
| planName | string | No | Plan display name |
Was this page helpful?