#prabhaw-soti-ebpearls_api

1 messages ¡ Page 1 of 1 (latest)

tame gladeBOT
#

👋 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.

slender latchBOT
#

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.

muted ibex
#

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"
})
slender latchBOT
floral surge
#

What is the error you're referring to? I don't see error in your screenshot

muted ibex
#

i am talking about image requirement ( i use strpe form form custom business accout )

floral surge
#

That is not an error, but to set up a bank account for testing purpose. Can you share what you're trying to do?

tame gladeBOT
muted ibex
#

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"
})
rugged juniper
#

And what seems unexpected?

muted ibex
#

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

rugged juniper
muted ibex
#

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"
})
rugged juniper
#

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

muted ibex
#

i turn on external accoutn connection but bank details input was not there

rugged juniper
#

Not where?

muted ibex
#

can you send me like where should i put on

rugged juniper
#

You should see the bank account collection on the Account Link URLs you generate

muted ibex
#

this is url

rugged juniper
#

Have you gone through the entire onboarding flow?

muted ibex
#

can i use my api to create external account on this connect ( like connect account from link and external account form api )