#JoelBermudez
1 messages · Page 1 of 1 (latest)
So you want to be charged at the end of the month for the previous month's usage basically?
I want to charge the day they started the subscription, but next month.
If they started on 15th January, next payment would be 15th February for everything
Would be for the next payment plus the previous days usage that were not charged until now
But maybe that proration I won't add it and probably would give it free, I want to know how to make both
Got it. Ok so you can have 1 subscription item for the base 100 price. Then, you can update the subscription to add a new item with a new price of 35 for the first additional user. Then, for each additional user, you'd just update the quantity of that second subscription item: https://stripe.com/docs/api/subscriptions/update#update_subscription-items-quantity. You can control whether or not it's prorated and how it's prorated by setting the proration_behavior: https://stripe.com/docs/api/subscriptions/update#update_subscription-proration_behavior
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Got it, will try to implement this! Thanks