#Harpreet-bank_account
1 messages · Page 1 of 1 (latest)
hello! when you say. you want to add a bank account for Stripe - do you mean you want to add a bank account to your own Stripe account? or are you trying to add a bank account a connected account?
also, can you elaborate more on why you're not able to add? Are you seeing an error?
I want to add bank account manually by form.
Invalid value for stripe.confirmUsBankAccountSetup intent secret: value should be a client secret of the form ${id}secret${secret}
are you referring to any documentation? Can you share the link to the documentation that you're looking at?
after you create the SetupIntent, the response will contain a client_secret : https://stripe.com/docs/api/setup_intents/object#setup_intent_object-client_secret
I want to add a bank account so for this what parameter to create setup intent
you need to use a SetupIntent to collect and save the bank account details
is stripe provide facility to create setup intent?
i'm afraid i don't understand what you mean. You can use the Stripe API to create a SetupIntent - the sample code is in the guide you shared
I need to send bank info to server then add those bank details to setup intent then need to create right, this is what you mean?
no, you need to follow the steps in the documentation https://stripe.com/docs/payments/ach-debit/set-up-payment i.e.
...
- create a SetupIntent
- initialize stripe and collect the PaymentMethod details (with the SetupIntent's client_secret)
...
would i need to send client_secret to client side for complete the ach integration and where i can complete the kyc for that ..?/
👋 stepping in and catching up
Yes you need to send client_secret to client side. Inside the link my colleague shared, you will have the steps for completing kyc (or collecting mandate to be correct) https://stripe.com/docs/payments/ach-debit/set-up-payment
thats fine , then when i need to verify or complete my ach ..?
bcz it needs to verify through micro deposits
The returned SetupIntent will tell you that. This part