Hello Remi,
Thank you for the information.
Does this mean that I could create accounts as below:
const account = await stripe.accounts.create({
country: 'US',
type: 'express',
capabilities: {
card_payments: {
requested: true
},
transfers: {
requested: true
}
},
settings: {
payouts: {
schedule: {
interval: 'manual'
}
}
}
});
Would that take care of automatic payouts being disabled for the
accounts created as above?
Thank you