#hellshi-subscriptions
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- hellshi, 2 days ago, 7 messages
If you're creating Subscriptions you should never have to separately create a payment intent. If you create the Subscription with payment_behavior: allow_incomplete, payment will be attempted as soon as the subscription is created
hellshi-subscriptions
Nice, one more thing, if I update a customer subscription and change the price attached to it, will it be charged automatically?
it depends on what you set for payment_behavior and proration_behavior. If you set proration_behavior: always_invoice with payment_behavior: allow_incomplete any difference in price will be immediately charged for in a new invoice
How can I avoid it to be charged imediatelly?
In the system I'm working on, our plans can be changed at some point, we want to email the current subscribers and let them choose whether to sign with they new price or not. But, once the agree to subscribe, it can only be charged after the old subscription expire
Is that possible?
If you want to not change the subscription to be on the new price until the end of the current cycle, you need to look into using subcsription schedules (see https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#changing-subscriptions as an example)