JavaScript
Properties
When to Fire
- When team invite is sent
- When collaboration request is initiated
- After invite email is dispatched
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 is invited to join an account.
window._upstack('track', 'user_invited', {
accountId: 'acct_abc123',
inviteeEmail: 'newmember@acme.com',
inviteeRole: 'member',
invitedByUserId: 'usr_xyz789'
});
| Property | Type | Required | Description |
|---|---|---|---|
| accountId | string | Yes | Account identifier |
| inviteeEmail | string | No | Invitee email address |
| inviteeRole | string | No | Assigned role |
| invitedByUserId | string | No | Inviter’s user ID |
Was this page helpful?