#patrickhowonk_17393_66278

1 messages ยท Page 1 of 1 (latest)

sudden skyBOT
#

Hello! We'll be with you shortly. 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.

upbeat reef
#

The error said it ๐Ÿ™‚ Only with business_type = individual, you will be able to provide individual parameters

wintry wing
#

Parameter 'business_type' cannot be used in conjunction with an account token. To
set this field create a token with the desired changes. Pass the token with 'account_token' in a request without setting 'business_type'.

#

this is my code

#

const account = await stripe.accounts.create({
country: 'US',
type: 'custom',
capabilities: {
card_payments: {
requested: true,
},
transfers: {
requested: true,
},
},
external_account: bank.id,
account_token: token.id,
business_type:'individual'
});

upbeat reef
#

The error mentioned it again ๐Ÿ™‚

sudden skyBOT
bleak halo
wintry wing
#

how to active transfers capabilities in account connected

#

const bank = await stripe.tokens.create({
bank_account: {
country: 'US',
currency: 'usd',
account_holder_name: 'Jenny Rosen',
account_holder_type: 'individual',
routing_number: '110000000',
account_number: '000123456789',
},
});
const token = await stripe.tokens.create({
account: {
individual: {
first_name: 'Jane',
last_name: 'Doe',
},
business_type: 'individual',
tos_shown_and_accepted: true,
},
});
const account = await stripe.accounts.create({
country: 'US',
type: 'custom',
capabilities: {
card_payments: {
requested: true,
},
transfers: {
requested: true,
},
},
external_account: bank.id,
account_token: token.id,
// business_type:'individual'
});

#

this my code

bleak halo
#

You'd follow the guide I just linked