JavaScript
Properties
When to Fire
- When seats are purchased
- When user is added beyond plan limit
- When Stripe subscription quantity increases
Stripe Webhook
Maps tocustomer.subscription.updated when subscription quantity increases.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Track when additional seats are purchased.
window._upstack('track', 'seat_added', {
accountId: 'acct_abc123',
subscriptionId: 'sub_def456',
seatCount: 15,
seatDelta: 5,
mrrDelta: 2500
});
| Property | Type | Required | Description |
|---|---|---|---|
| accountId | string | Yes | Account identifier |
| seatCount | number | Yes | Total seats after addition |
| subscriptionId | string | No | Subscription identifier |
| seatDelta | number | No | Number of seats added |
| mrrDelta | number | No | MRR increase from seats in cents |
customer.subscription.updated when subscription quantity increases.Was this page helpful?