#raulgq_api
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/1498712621702975644
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there
Hello
Firstly, there are a couple of docs pages that I would recommend bookmarking because they're extremely useful as references for understanding what the various states of Subscriptions and Invoices really mean:
https://docs.stripe.com/billing/subscriptions/overview
https://docs.stripe.com/invoicing/overview#invoice-lifecycle
There is some inherent overlap of your questions with the Billing settings in your dashboard on this page: https://dashboard.stripe.com/settings/billing/subscriptions
You'll see different behaviors on past_due and unpaid Subscriptions to some extent depending on your settings - I would specifically recommend reading the entries for those statuses in the "How Subscriptions Work" doc (first link)
But if you cancel a Subscription via the API, we stop all collection attempts on that Subscription. Invoices that are not in a terminal state (void) can still be paid manually
Ok, that was my main concern about invoices that are still open. If I cancel the membership, can Stripe still automatically charge the customer on the next retry if the payment method is working
But I think is not possible, only manually
If you cancel the Subscription, we will turn off retries. You can still explicitly try to pay the Invoice via the API
Ok, now it's clear. Thank you for your help and the documentation links