#MikeDworken
1 messages · Page 1 of 1 (latest)
Hello 👋
can you share the request ID?
https://support.stripe.com/questions/finding-the-id-for-an-api-request
Sorry the server is a little busy, looking into it now
Okay so seems like you're using a bank account created using Bank Accounts API with the PaymentIntents
You'd likely want to pass in the bank account ID (ba_xxxx) as a payment_method while creating the PaymentIntent
https://stripe.com/docs/payments/ach-debit/migrations#bank-accounts-api
Alternatively, you can create a payment method for it using a SetupIntent
https://stripe.com/docs/payments/ach-debit/migrations#bank-accounts-api:~:text=Similarly%2C-,you can use a saved BankAccount,-as a PaymentMethod
I believe we're already passing it in as a payment_method - the problem is it's not passing validation for payment_method_types
I don't see a payment_method parameter on
https://dashboard.stripe.com/logs/req_NchJP8Z0lHKjBa
ah, so will it let us if we specify it explicitly instead of through the default source?
I believe so
huh. Worth a try, thanks!