JavaScript
Properties
When to Fire
- When payment is received
- When manual reconciliation marks invoice paid
- When Stripe
invoice.paidwebhook fires
Stripe Webhook
Maps toinvoice.paid.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Track when an invoice is marked as paid.
window._upstack('track', 'invoice_paid', {
accountId: 'acct_abc123',
invoiceId: 'inv_ghi012',
subscriptionId: 'sub_def456',
amount: 9900,
currency: 'USD'
});
| Property | Type | Required | Description |
|---|---|---|---|
| accountId | string | Yes | Account identifier |
| invoiceId | string | Yes | Invoice identifier |
| amount | number | Yes | Paid amount in cents |
| subscriptionId | string | No | Subscription identifier |
| currency | string | No | ISO 4217 currency code |
invoice.paid webhook firesinvoice.paid.Was this page helpful?