JavaScript
Properties
When to Fire
- When invite is accepted
- When account access is granted
- After user completes join flow
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Track when an invited user accepts and joins the account.
window._upstack('track', 'user_joined', {
userId: 'usr_newmember',
accountId: 'acct_abc123',
userEmail: 'newmember@acme.com',
userRole: 'member'
});
| Property | Type | Required | Description |
|---|---|---|---|
| userId | string | Yes | New user identifier |
| accountId | string | Yes | Account identifier |
| userEmail | string | No | User email address |
| userRole | string | No | User’s assigned role |
Was this page helpful?