#Olli-Subscription
1 messages · Page 1 of 1 (latest)
Hi there, here is how Strip handle discounts and tax https://stripe.com/docs/tax/faq#how-do-you-handle-discounts
awesome, thanks.
also, do you know of a good way to integrate this billing model that doesn't use discounts?
$99/mo, 100,000 requests included, then $1 per 1,000 requests
the only ways i can think of doing it is either using discounts (which isn't that ideal), or by handling included usage before sending it to stripe (which is even worse)
OK, it's a combination of a flat rate pricing $99/mo + usage-based pricing $1 per 1,000 requests
yep, but there's included usage of 100k
So you can create a subscription that includes two prices
- price 1 - the $99/mo
- price 2 - the usage-based pricing
For price 2, remember to report the usage (https://stripe.com/docs/products-prices/pricing-models#reporting-usage) and the amount will be changed to customer's upcoming invoice.
i got that, just the included usage that i'm having problems with. i cannot find anything on the docs, or anything on the dashboard, regarding that kind of usage. would using a discount for the included usage be the best way forward?
You can only report the usage through API, please take a look at the doc that I sent earlier.
i understand that, but that's not what i'm having a problem with. i have to go to bed now anyway, i'll deal with it tomorrow. thanks