JavaScript
Properties
When to Fire
- When former customer signs up again
- When win-back campaign converts
- When churned account starts new subscription
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Track when a previously churned customer resubscribes.
window._upstack('track', 'subscription_reactivated', {
subscriptionId: 'sub_ghi789',
accountId: 'acct_abc123',
planId: 'plan_pro_monthly',
planName: 'Pro Plan',
mrr: 9900,
daysSinceChurn: 45
});
| Property | Type | Required | Description |
|---|---|---|---|
| subscriptionId | string | Yes | New subscription identifier |
| accountId | string | Yes | Account identifier |
| planId | string | No | New plan identifier |
| planName | string | No | Plan display name |
| mrr | number | No | Recovered MRR in cents |
| daysSinceChurn | number | No | Days between churn and reactivation |
Was this page helpful?