#standeman_best-practices
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/1275374308734144537
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi, let me help you with this.
When Invoice is marked as paid, it's a terminal state: https://docs.stripe.com/invoicing/overview#invoice-statuses
You can manually cancel the Subscription when you receive a chargeback: https://docs.stripe.com/api/subscriptions/cancel
๐ taking over for my colleague. Let me know if there's any follow-up Qs I can answer!
I do manually cancel the subscription when a chargeback happens at the moment. But this is not good for my churn rate and when a customer comes back for a subscription they will still have the additional invoice in their customer portal. The invoice they didn't pay for.
it seems like a feature request that you could submit to us via https://support.stripe.com/?contact=true
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
If I allow the customer to have too many invoices in their account. How can I make them renew the subscription after a SEPA chargeback without churning them?
I can ofcourse make them manually pay me outside of stripe (this mans that I don't have to disable their subscription), but this can take multiple business days. I would prefer if they could pay me through IDEAL through stripe so I can immediatly check if they completed the payment.
I'm not sure there's any clean solution here either than e.g. processing a new one-off Invoice or PaymentIntent(which can use iDEAL). https://docs.stripe.com/invoicing/integration
I think I will have to make an implementation with a one-off invoice and check if they paid that. If they don't after a while I would cancel their subscription.