#Shahriyar - Upgrade Subscriptions
1 messages ยท Page 1 of 1 (latest)
HI ๐
We cover how to handle this use case pretty well in this doc:
https://stripe.com/docs/billing/subscriptions/upgrade-downgrade
In your use case you would prorate the user for the first price they have already subscribed to when they make the upgrade
but for every billing cycle afterwards they would get charged the full amount for the higher price
so the only thing that matters here is proration_behavior: 'create_prorations' and the new price id
Yep
And when someone downgrades and proration_behavior: 'create_prorations' is set will he get a refund of the extra money?
It will be issued as a credit balance which gets used to pay for the next invoice but you can always create a refund if that's how you want it to work
What if I do not want to refund or issue credit balance then what to do?
Then you set proration_behavior to none
Okay thank you soo much โค๏ธ
Happy to help ๐
hey one more thing, is there a way to send the invoice pdf to the customer email after the payment was successful every month, automatically