#Arvind hariharan
1 messages · Page 1 of 1 (latest)
Hi
Yes, what is your ask ?
HI Trying to test stripe ACH integration flow and need to test scenario of having micro deposits as verification method while creating a payment intent
i am getting the following error when i pass micro deposits as a param
i am stuck at this point and need some help in resolving this. is there any configuration that i need to do?
if i am passing micro deposits as verification method?
Trying using this link
Can you share the ID (req_xxx) of the failing API request?
https://support.stripe.com/questions/finding-the-id-for-an-api-request
req_pyG2WbWWsarR9p
For some reasons I can't find this requestId, can you share the complete link with dashboard ?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
👋 taking over for my colleague. Let me catch up.
Also i have added my email in the billing details of payment method . But not receiving any email regarding the same
in the screenshot you shared
would you mind scrolling down a bit and copying the request ID from the response headers?
req_pyG2WbWWsarR9p
can you show the exact code you're using that you've wrote to implement the microdeposits, on the frontend and the backend?
For example, you are probably calling collectBankAccountForPayment , which you would not do if using microdeposits and it will not work(you have to build your own inputs for the bank details instead of using our FinancialConnections product and UI from that function; that's what the error means).
okay yes i am using collectBankAccountForPayment and trying micro deposits as verification method
Do you have any sample code which stripe provides to test this scenario?
Or any specific link in stripe documentation that i can refer to in building this UI?
you can't, that doesn't work. collectBankAccountForPayment is only for the instant verification method, not microdeposits. That's why you get an error.
yes understood
I don't think we have any examples of this since it's an advanced flow and would depend how you build your own website and payments page
it's straightforward though, it's just some HTML inputs where you collect the bank account details and the docs at https://stripe.com/docs/payments/ach-debit/accept-a-payment?platform=web&ui=API#microdeposit-only-verification should be enough to get you started.