- Set users to a subscription cadence once they upload a payment method
- Add a backend job that aggregates usage in the form that you're metering (with lots of lots of unit tests to make sure you know what to expect) and post that as an invoice item to the customers' account in Stripe, but don't collect
- Periodically have a subscription in Stripe (typically monthly) go and bill for all the open invoice items. This grabs all of the usage that hasn't been invoiced in the period and bills for it. If the total value is $0, skip that month.
- Let users manage receipts and invoices in Stripe, and make sure the line items on the invoices correspond with user meaningful usage metering
rogerkirkness|2 years ago
- Set users to a subscription cadence once they upload a payment method
- Add a backend job that aggregates usage in the form that you're metering (with lots of lots of unit tests to make sure you know what to expect) and post that as an invoice item to the customers' account in Stripe, but don't collect
- Periodically have a subscription in Stripe (typically monthly) go and bill for all the open invoice items. This grabs all of the usage that hasn't been invoiced in the period and bills for it. If the total value is $0, skip that month.
- Let users manage receipts and invoices in Stripe, and make sure the line items on the invoices correspond with user meaningful usage metering
hekike|2 years ago
Dwolb|2 years ago
Do you actively monitor how much customers owe you or even cap the size of their bill before they need to pay you?
This would be in case they have a significant amount of usage in a period.
lucasbedout|2 years ago
Dwolb|2 years ago