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

JavaScript

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

Properties

PropertyTypeRequiredDescription
subscriptionIdstringYesSubscription identifier
accountIdstringYesAccount identifier
planIdstringNoPlan identifier
mrrnumberNoResumed MRR in cents
pausedDaysnumberNoHow 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.