Skip to main content
Fires when a trial converts to a paid subscription. This is a key conversion event for measuring trial success.

JavaScript

window._upstack('track', 'trial_converted', {
  accountId: 'acct_abc123',
  subscriptionId: 'sub_def456',
  planId: 'plan_pro_monthly',
  planName: 'Pro Plan',
  mrr: 9900,
  billingInterval: 'month'
});

Properties

PropertyTypeRequiredDescription
accountIdstringYesAccount identifier
subscriptionIdstringYesNew subscription ID
planIdstringYesConverted plan identifier
planNamestringNoPlan display name
mrrnumberNoMonthly recurring revenue in cents
billingIntervalstringNomonth or year

When to Fire

  • After first successful payment
  • When Stripe subscription status changes from trialing to active
  • After payment method is charged successfully
Track mrr to measure trial-to-paid conversion value and calculate average revenue per converted trial.