JavaScript
Properties
When to Fire
- When customer manually resumes
- When pause period ends automatically
- When billing restarts
Stripe Webhook
Maps tocustomer.subscription.resumed.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Track when a paused subscription is resumed.
window._upstack('track', 'subscription_resumed', {
subscriptionId: 'sub_def456',
accountId: 'acct_abc123',
planId: 'plan_pro_monthly',
mrr: 9900,
pausedDays: 30
});
| Property | Type | Required | Description |
|---|---|---|---|
| subscriptionId | string | Yes | Subscription identifier |
| accountId | string | Yes | Account identifier |
| planId | string | No | Plan identifier |
| mrr | number | No | Resumed MRR in cents |
| pausedDays | number | No | How long subscription was paused |
customer.subscription.resumed.Was this page helpful?