#akash.bhaskar
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- akash.bhaskar-account-support, 4 hours ago, 8 messages
- akash.bhaskar, 1 day ago, 9 messages
- akash.bhaskar, 2 days ago, 14 messages
- akash.bhaskar, 2 days ago, 9 messages
- akash.bhaskar, 3 days ago, 37 messages
- akash.bhaskar, 5 days ago, 75 messages
and 4 more
I guess you mean you want to prevent duplicate accounts for the same user/email/person?
yup
Not possible directly with Stripe, you'd need to handle that validation yourself
ok
but i am using stripe connect onboarding..so am not able to get the account number for validation
👋 taking over for my colleague. Let me catch up.
would you mind elaborating?
i want to prevent duplicate bank accounts to be added for the same connect account
i am using individiual custom connect
but the first bank is taken via stripe ui..connect onboarding..so am not able to get details to hash and store
so how is it possible to prevent same person entering same bank details as before
I'm not sure I fully understand, let me try to rephrase and let me know if I'm getting it correctly
sorry for the delayed reply
so basically you want to prevent your Custom Account from adding a new bank account which he already has previously right?
what you can do is first create a bank account token using https://stripe.com/docs/api/tokens/create_bank_account
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
once you do you can check the https://stripe.com/docs/api/tokens/object#token_object-bank_account-fingerprint
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
then you can list all of the accounts external bank accounts https://stripe.com/docs/api/external_account_bank_accounts/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
and check whether you have a previous account with the same fingerprint
if that's the case you can inform the connect account that they have previously added the bank account
otherwise you can proceed and create the external bank account for the connect account https://stripe.com/docs/api/external_account_bank_accounts/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.