#tr_webhooks
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/1493530723829813310
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
hey there 👋 Pay by Bank is a synchronous/immediate-notification payment method
https://docs.stripe.com/payments/pay-by-bank/accept-a-payment#:~:text=You get immediate notification on whether the payment succeeded or failed.
just checking if we have a full list of all async payment methods available
thank you - I´m also interested if Wero is async or not. The AI Bot on the stripe page mentioned, that Pay By Bank and Wero are async - so I should check checkout.session.async_payment_succeeded
it was mentioned the time is short to get response but they are async - so checkout.session.async_payment_succeeded should be checked
hmm not sure about Wero specifically as it's in beta, but generally speaking this is mentioned in our integration docs for each payment method
for example, here's what it says for TWINT: https://docs.stripe.com/payments/twint#:~:text=You get immediate notification on whether the payment succeeded or failed
I'll check internally about Wero - it'll just take a few minutes
Wero is synchronous - you only need to listen for checkout.session.completed
https://docs.stripe.com/payments/wero/accept-a-payment?payment-ui=checkout#fulfill-orders:~:text=After the customer,fulfil the order.
thanks a lot. An offiicial document providing an overview which payment methods are triggering checkout.session.async_payment_succeeded would be very helpful. there are a lot of discussion regarding the project where I´m involved
no worries, I agree that'd be helpful - I'll flag internally
so you confirm - both are synchronous - so just checkout.session.completed - right?
yep, exactly!
thank you