JavaScript
Properties
When to Fire
- When customer requests pause
- When seasonal pause is activated
- When Stripe subscription pause feature triggers
Stripe Webhook
Maps tocustomer.subscription.paused.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Track when a subscription is paused.
window._upstack('track', 'subscription_paused', {
subscriptionId: 'sub_def456',
accountId: 'acct_abc123',
planId: 'plan_pro_monthly',
mrr: 9900,
pauseReason: 'seasonal_business'
});
| Property | Type | Required | Description |
|---|---|---|---|
| subscriptionId | string | Yes | Subscription identifier |
| accountId | string | Yes | Account identifier |
| planId | string | No | Plan identifier |
| mrr | number | No | Paused MRR in cents |
| pauseReason | string | No | Why subscription was paused |
customer.subscription.paused.Was this page helpful?