#Rahul Maru
1 messages ยท Page 1 of 1 (latest)
Hi
It depends on the connect type account:
https://stripe.com/docs/connect/accounts
Did you choose what type are you using ?
company type or business type
No Stripe Connect Account type (express, standard or custom)?
express
For express account, just the typefield is required:
https://stripe.com/docs/api/accounts/create
no actually i am asking about the field which is invidual and company
i am confuse in it
{
type: 'custom',
country: req.body.country,
email: req.body.email,
business_type: req.body.business_type,
requested_capabilities: [
'card_payments',
'transfers'
],
business_profile: {
url: req.body.url,
mcc: '5734'
},
individual: {
address: {
line1: req.body.line1,
line2: req.body.line1,
city: req.body.city,
state: req.body.state,
country: req.body.country,
postal_code: req.body.postal_code
},
dob: {
day: req.body.day,
month: req.body.month,
year: req.body.year
},
verification: {
document: {
front: data.id
}
},
email: req.body.email,
first_name: req.body.first_name,
last_name: req.body.last_name,
gender: req.body.gender,
id_number: req.body.id_number,
phone: req.body.phone
}
}
currently i am using these fields for individual based account
but in UAE we need a connect account for company is there any different fields required https://api.stripe.com/v1/accounts
in this api for that thing
๐ taking over for my colleague. Let me catch up.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
so you mean first i have to create an account as individual and then update it for company
can you send the proper request payload which i have to send in the api for create a connect account
first you need to specify the business_type https://stripe.com/docs/api/accounts/create#create_account-business_type as company
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
second you need to fill this object https://stripe.com/docs/api/accounts/create#create_account-company
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
In company.verification.document what i have to send there are two keys mentioned here front and back in that key what i have to send in the api
I don't understand the question
you need to first upload a file like the description mentioned and then use the ID of that file here
ok i'll try this thing Thank you @graceful dock @narrow dew
for test mode can i upload any document for verification
https://stripe.com/docs/connect/testing#identity-and-address-verification
might be useful for testing
ok Thank you so much @graceful dock
let me know if you need any more help