#iy2011
1 messages · Page 1 of 1 (latest)
I'm not sure I understand what you're asking. Can you elaborate?
We are looking to only allow instant verification, no microdeposit verification, in the ACH signup flow (ie. when the Financial Connections modal appears). I saw the above Stripe Docs link to specify a verification_method but this is for Checkout. We have a custom page using setupIntents. I'm wondering if the verification_method would still work for us, such as my code sample
I think (no matter what) you would have to account for the possibility of instant verification failing. I believe microdeposit verification can happen even if you request instant verification.
As for if the "instant only" verification works on setup intents or not, I would need to dig a bit to see if that is possible. My gut tells me no, but I want to double-check
Ah, okay, so it wouldn't happen on the Setup Intent, it would happen on the Payment Intent: https://stripe.com/docs/payments/ach-debit/accept-a-payment?platform=web&ui=API#instant-only-verification
Ok thanks. PaymentIntents aren't typically used just to save payment methods on file right? The custom page we have is basically a wallet where we allow users to save their ACH for later
(that's why we are using setupIntent instead)
Ahhh, okay I see. I think you can actually use the Setup Intent if I'm reading this correctly (apologies if this seems like a wild goose chase, I'm juggling a lot of Discord threads at the moment and the server is very busy). Have you tried the request you initially mentioned?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Seems like it should be possible
Doh! Yes, just realized that it directly documented. Thanks.