#ferencjuhasz_23650
1 messages · Page 1 of 1 (latest)
Hello
Yep you can model this in Stripe
So mostly what you will do is add two Prices to the Subscription. However, you basically create the second Price -- the graduated metered with x amount free -- at the time of Subscription creation based upon the amount of seats that the customer selects.
There is no limit on the number of Prices that you create
So you can basically just have a different Price in Stripe for each of the N*X free P2
I would need to create these prices on the API right? So when the subscription is created, I could listen to a webhook and based on the number of seats, I would create the new price?
You could do it that way, yes. Or you could just have the user indicate the number of seats and the create the relevant Price (or grab an already-created one if it exists) and then create the Subscription with the two Prices
Okay, thank you for your help!