#jogui_docs
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1234460821711491212
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐
Does Stripe handle this?
No you need to communicate this to your customers by your own.
Okay, is it correct that from a tecnical point, i only need to retrieve the Subscriptions and update the price to the new one, and when the new renew (not actual) they will pay with the new price?
I mean, its our job to communicate, cancel and wait for the opt-in to remove the cancellation and such right?
Is there helpful article about what is the correct way to do this in stripe? We were thinking on the following steps:
- We execute a function that iterates all active subscribers, and for each one:
1.1 We get the stripe susbcription and update to the new price.
1.2 We cancel the subscription for these users.
1.3 We send an email explaining the price increase, that we have cancelled the subscription and a big CTA "I accept the price increase" that would remove the cancellation status from the subscription.
i only need to retrieve the Subscriptions and update the price to the new one, and when the new renew (not actual) they will pay with the new price?
Yes correct.
1.2 We cancel the subscription for these users.
Why you want to cancel the Subscription. You just update the price no ?
You cannot increase a subscription from 10 to 20 without aproval from the user (opt-in)
therefore when i do the change, i have to cancel the autorenweal, and await for an approval from their side
then i can remove the cancelation of autorenewal
You can update the price for the next billing period, send an email with two buttons for example: Yes - keep my subscription and increase the price or No - cancel my subscription
First you iterate and just send email.
Then depending on the customer selection you make the updates
hmmm, gona think on that possiblity
then @somber coral there is no best practices guide on stripe right?
we have to handle it by ourselves and thats it
No I can't find one so far sorry. I think that depends on each business use case and Payment methods constraints
Thank you, this will be all then ๐