#prabhaw-soti-ebpearls_api
1 messages ¡ Page 1 of 1 (latest)
đ 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/1217030809568018462
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- prabhaw-soti-ebpearls_api, 1 hour ago, 40 messages
- prabhaw-soti-ebpearls_unexpected, 22 hours ago, 23 messages
- prabhaw-soti-ebpearls_api, 6 days ago, 21 messages
- prabhaw-soti-ebpearls_webhooks, 6 days ago, 11 messages
const res = await this.stripeService.stripe.accounts.create({
type: "custom",
business_profile: {
mcc: '8299',
product_description: 'Sell and buy animal.',
},
country: 'au',
capabilities: {
card_payments: {
requested: true,
},
transfers: {
requested: true,
},
},
account_token: body.connect_tok,
});
const userBankAccount: UserBankAccountType = {
userId: userDetails.pioneerId,
stripeConnectId: res.id,
};
// await this.userBankRepo.create(userBankAccount);
const autolink = await this.stripeService.stripe.accountLinks.create({
account: res.id,
refresh_url: "https://youchoosepetsandlivestock.com/login",
return_url: "https://youchoosepetsandlivestock.com/" ,
collect:"eventually_due",
type:"custom_account_verification"
})
What is the error you're referring to? I don't see error in your screenshot
i am talking about image requirement ( i use strpe form form custom business accout )
That is not an error, but to set up a bank account for testing purpose. Can you share what you're trying to do?
i am try to create connect accoutn for my client in my application so i create auto link to create connect account for my client
const res = await this.stripeService.stripe.accounts.create({
type: "custom",
business_profile: {
mcc: '8299',
product_description: 'Sell and buy animal.',
},
country: 'au',
capabilities: {
card_payments: {
requested: true,
},
transfers: {
requested: true,
},
},
account_token: body.connect_tok,
});
const userBankAccount: UserBankAccountType = {
userId: userDetails.pioneerId,
stripeConnectId: res.id,
};
// await this.userBankRepo.create(userBankAccount);
const autolink = await this.stripeService.stripe.accountLinks.create({
account: res.id,
refresh_url: "https://youchoosepetsandlivestock.com/login",
return_url: "https://youchoosepetsandlivestock.com/" ,
collect:"eventually_due",
type:"custom_account_verification"
})
And what seems unexpected?
if i'm using stripe page to get input of inforamtion and verification document , but external account was not ask for input in that form
there was not input fileld for bank details input
You need to turn on the external account collection in your Dashboard: https://dashboard.stripe.com/settings/connect/payouts/onboarding
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Detailed here: https://docs.stripe.com/connect/payouts-bank-accounts
how can i use this setting in standard account or what shoul be change
const res = await this.stripeService.stripe.accounts.create({
type: "custom",
business_profile: {
mcc: '8299',
product_description: 'Sell and buy animal.',
},
country: 'au',
capabilities: {
card_payments: {
requested: true,
},
transfers: {
requested: true,
},
},
account_token: body.connect_tok,
});
const userBankAccount: UserBankAccountType = {
userId: userDetails.pioneerId,
stripeConnectId: res.id,
};
// await this.userBankRepo.create(userBankAccount);
const autolink = await this.stripeService.stripe.accountLinks.create({
account: res.id,
refresh_url: "https://youchoosepetsandlivestock.com/login",
return_url: "https://youchoosepetsandlivestock.com/" ,
collect:"eventually_due",
type:"custom_account_verification"
})
You're not creating standard accounts though, you're creating custom accounts
So you need to enable to setting in your Dashboard, and the hosted onboarding flow will facilitate bank account collection for you
Not where?
can you send me like where should i put on
You should see the bank account collection on the Account Link URLs you generate
Have you gone through the entire onboarding flow?
can i use my api to create external account on this connect ( like connect account from link and external account form api )