#yebuntu
1 messages · Page 1 of 1 (latest)
Or for the "business_profile" which is required i believe, i can use my "companies" information rather than the product sellers?
it will vary depends on the Connected Account's type (express/custom/standard) but generally yes
These will be digital services, so nothing is going to be shipped, etc.
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
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
This could explain how to view requirements for Custom accounts
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
If you look at your webhook events, does it require that much information? I think the Doc is just listing extensively
I havnt setup my webhook yet, I will do so now
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
Yeah they are for the identity verification
I'm assuming for payouts, this sort of information will be needed anyways right