#zack_mccarty-bank-transfers
1 messages · Page 1 of 1 (latest)
You could have your customer select a single Payment Intent to apply the bank transfer to, but you would have to send them back to the checkout flow in order for them to be able to do this for multiple Payment Intents
What I need to figure out is if a customer can specify what payment intents they want to cover with each transfer?
If you only need to have them select one, then you would just make sure that during step #3 here (https://stripe.com/docs/payments/bank-transfers/accept-a-payment?platform=web#element-create-payment-intent), rather than create a new Payment Intent, you instead list all the Payment Intents you have for that customer and update whichever one they select to pay
Ahh I see, so there would be no way to have the select multiple payment intents?
Or could we hack with a batch request of any kind?
Correct
I think you could probably hack around that limitation if you set up off-session payments for the customers and just did a batch request for all the payment intents they selected after they leave the session.
What is an "off-session" payment?
Ah, wait. Nevermind. That won't work because Customers might have balances already, which would render that workaround problematic at best.
So essentially, there isn't a way haha
I can't really think of a way to use Bank Transfers to accomplish this specific use-case, no. Sorry for the runaround