#trimetilo_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/1220703052034609183
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
How is that evt_xxx related? Sorry it's old so can't see full details as they're only retained for a certain time
What do you mean specifically when you say 'virtual bank account'? Which payment method are you using?
Well, the id is not very interesting but I had to fill that field in order to be able to ask a question with the new system. That id however belong to an invoice to be paid by bank transfer. I have started using bank transfers as a new payment method and I would liek to know if it is possible to retrieve the Stripe generated bank account (VBAN) details for the customer so I can include them in my invoices as I don't use Stripe generated invoices.
Thanks, that question contains the details I need
Anyway, the banking details you need should be on the Payment Intent: https://docs.stripe.com/payments/bank-transfers/accept-a-payment?payment-ui=direct-api&invoices=with&country=US#web-complete-bank-transfer
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I am checking it, however in the payment intent associated (pi_3OltADB2v5yxQy400EpMbnjO) I see next_action: null
Well that's because you haven't actually confirmed the payment with a selected payment method: https://docs.stripe.com/payments/bank-transfers/accept-a-payment?payment-ui=elements#element-submit-payment-to-stripe
See status: 'requires_payment_method'
Probably because it's a collection_method: 'send_invoice' invoice too, so the expectation there is the user completes payment on the hosted invoice page
Yes, I created the invoice using Stripe UI. Does it mean that in this case the payment intent object won't include the transfer details?
Yes seems that way reading this: https://docs.stripe.com/invoicing/bank-transfer#payment-instructions
If you want the banking instructions directly you'd integrate without the invoice
Referenced here too: https://docs.stripe.com/payments/bank-transfers/accept-a-payment?payment-ui=elements&invoices=with#instruction-emails
Okay. I need to review the documentation and the implementation. Thanks! I believe I have now all I need to continue.
No problem, glad I could help!