#jones.jeffery
1 messages · Page 1 of 1 (latest)
Hello there
Hello! 🙂
This isn't really possible, no. But what you could do is set the proration_behavior to none (https://stripe.com/docs/api/customer_portal/configurations/create#create_portal_configuration-features-subscription_update-proration_behavior) which would mean that the new Price wouldn't charge until the following billing period.
But you would need to figure out how to maintain the correct Price in your database until that next billing period even though the Sub in Stripe would be set to the new Price already
Got it. That is kind of what I had noticed and expected.
Similar question: if an account were to archive a price on a plan. Say change their monthly rate from $9.99 to $12.99. Is there anyway for us to programmatically update all customers on that old price to the new price. Is there a batch update available or would we have to send a request for each one individually?
We don't support any batch update APIs unfortunately.
So you need to list loop and update in that case
Would we potentially hit rate limiting with that?
Yes potentially. You have 100 wps (https://stripe.com/docs/rate-limits) so need to take that into account
Awesome. Will plan to batch them out then.
Just to verify there is no way to handle that update to the customers on the archival of the old price?
You need to update each Subscription individually