> ## Documentation Index
> Fetch the complete documentation index at: https://docs.upstackdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# subscription_resumed Event

> Track when a paused subscription is resumed.

Fires when a paused subscription is resumed. Use this event to measure pause-to-resume rates and recovered MRR.

## JavaScript

```javascript theme={null}
window._upstack('track', 'subscription_resumed', {
  subscriptionId: 'sub_def456',
  accountId: 'acct_abc123',
  planId: 'plan_pro_monthly',
  mrr: 9900,
  pausedDays: 30
});
```

## Properties

| 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 |

## When to Fire

* When customer manually resumes
* When pause period ends automatically
* When billing restarts

## Stripe Webhook

Maps to `customer.subscription.resumed`.
