#felix_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/1326084364735483968
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- felix_api, 4 days ago, 4 messages
Hi! Stripe will only automatically finalise an invoice and attempt payment if auto_advance is true: https://docs.stripe.com/invoicing/integration/automatic-advancement-collection#toggle-auto-advance
If auto_advance is not true, you will need to finalise the invoice manually. Stripe will not attempt payment.
If the customer has not payment method, the invoice will remain open.
oh, just for clarity, can you help with something that differentiate between finalisation and auto-advance
because i am quite confuxed
Sure! You finalise an Invoice when it's ready to be paid. auto_advance basically determines if Stripe automatically finalises the invoice or if the merchant manually finalises the invoice. After an invoice is finalised (whether via Stripe or manually by the merchant) if the collection method is charge_automatically, and there is no payment method, the invoice will fail. And if it is send_invoice then the invoice will be sent to the customer.
thank you so much sam
finally, will the customer receive an email if it is finalized from the merchant.
or kindly just share a docs that speaks to finalization from the merchant
What happens once the invoice is finalised is the same for both auto_advancement = true and auto_advancement = false.
This doc (https://docs.stripe.com/invoicing/integration/workflow-transitions#finalized) gives you workflow on what happens once the invoice is finalised. Let me know if there are any questions on it.