#yebuntu

1 messages · Page 1 of 1 (latest)

clever nymphBOT
winter gull
#

Or for the "business_profile" which is required i believe, i can use my "companies" information rather than the product sellers?

tropic jasper
#

it will vary depends on the Connected Account's type (express/custom/standard) but generally yes

winter gull
#

These will be digital services, so nothing is going to be shipped, etc.

tropic jasper
#

It's a question to Stripe Support team, but AFAIK with Custom they won't even know Stripe existed

#

Express is a lightweight one in compare to Standard

winter gull
#

Gotcha, to activate the accounts tho, seems like it needs business information. This is what I currently have

   const newAccount = await this.stripe.accounts.create({
      type: 'custom',
      country: 'US',
      business_type: 'individual',
      capabilities: {
        card_payments: { requested: true },
        transfers: { requested: true },
      },
    });
#

But I believe a business profile is needed to finish activating these product owner accounts

tropic jasper
#

This could explain how to view requirements for Custom accounts

winter gull
#

Got it, thank you

#

Man, the information needed feels extensive. I should only care about their payment methods & bank account details for payouts, why do they need addresses, and all this other stuff. Kind of makes me think to set this up another way without creating product owner accounts

tropic jasper
#

If you look at your webhook events, does it require that much information? I think the Doc is just listing extensively

winter gull
#

I havnt setup my webhook yet, I will do so now

winter gull
#

Okay, I need all of these lol

     'business_profile.mcc',
      'business_profile.url',
      'individual.address.city',
      'individual.address.line1',
      'individual.address.postal_code',
      'individual.address.state',
      'individual.dob.day',
      'individual.dob.month',
      'individual.dob.year',
      'individual.email',
      'individual.first_name',
      'individual.last_name',
      'individual.phone',
      'individual.ssn_last_4',
      'tos_acceptance.date',
      'tos_acceptance.ip'
#

It's a custom account

tropic jasper
#

Yeah they are for the identity verification

winter gull
#

I'm assuming for payouts, this sort of information will be needed anyways right