#mohit-kumar_error

1 messages · Page 1 of 1 (latest)

river hemlockBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1359860854639821022

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

stone panther
#

Hi

civic ridge
stone panther
#

req_CemLg1Q8Vm9XsS

#

Are you developer ?

civic ridge
#

Yeap

civic ridge
#

The goal here is to create a bank account for a connected account for payouts, right ?

#

If so, are you willing to collect the bank account details by your own inputs in production ?

stone panther
#

yes

civic ridge
#

Thanks for confirming, checking...

river hemlockBOT
stone panther
#

I’m using a test Stripe key and adding test bank details with the stripe.accounts.createExternalAccount function. Will this process be treated as a test payment?

#

please confirm

crystal nimbus
stone panther
#

const bankAccount = await stripe.accounts.createExternalAccount(
userData.stripeId,
{
external_account: {
object: "bank_account",
country: "US",
currency: "usd",
routing_number: routing_number,
account_number: account_number,
account_holder_name: account_name,
account_holder_type: account_type,
},
}
);

how can I use that function on test mode because I need to check the payout functionality on test mode please suggest or share the updated code for test mode