#ang3lkar_unexpected
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1247159960190586952
đ Have more to share? Add details, code, screenshots, videos, etc. below.
Bank account payments are asynchronous. As you see, the status=complete might still mean that payment processing may still be in progress: https://docs.stripe.com/api/checkout/sessions/object#checkout_session_object-status
You can look at payment_status instead: https://docs.stripe.com/api/checkout/sessions/object#checkout_session_object-payment_status
Or wait until the related PaymentIntent goes from status=processing to status=succeeded: https://docs.stripe.com/api/payment_intents/object#payment_intent_object-status
I understand that. So, the checkout page, in case of an async payment, always redirects customer to the success_url?
Yes, unless there's some immediate error (e.g. incorrect bank number, or outage)