JavaScript
Properties
When to Fire
- When trial end date is reached without payment
- When account is downgraded to free tier
- When access is revoked after grace period
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Track when a trial ends without conversion.
window._upstack('track', 'trial_expired', {
accountId: 'acct_abc123',
planId: 'plan_pro_monthly',
planName: 'Pro Plan',
trialDays: 14
});
| Property | Type | Required | Description |
|---|---|---|---|
| accountId | string | Yes | Account identifier |
| planId | string | No | Expired trial plan |
| planName | string | No | Plan display name |
| trialDays | number | No | Total trial length |
Was this page helpful?