#boohas-checkout-savedpms
1 messages · Page 1 of 1 (latest)
What you're seeing is expected - currently Checkout Sessions will only display saved card payment methods, not any other types. We talk about it a bit more here (https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-customer)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Got it - so there's no way to persist a bank account using checkout sessions?
Zooming out, the broader issue we're running into is that some of our connected accounts have customers who prefer microdeposit verification and verifying the bank account each time has created a delay for our connected accounts.
Yeah there's no way to use an existing bank account with checkout sessions - if there are customers that want to use a saved bank payment method the best option would be to create a one-off Payment Intent or Invoice server-side and pass in the payment_method that they want to use
Good to know. Thanks for the help!