Hi,
to onboard express accounts.
Eventhough I create the account with the email parameter as per the example in the official documentation:
////
const account = await stripe.accounts.create({
type: 'custom',
country: 'US',
capabilities: {
card_payments: {requested: true},
transfers: {requested: true},
},
});
The onboarding page comes up with a blank email field (as attached here). How do I get this prefilled?
The subsequent pages comes filled up ( mostly !) with the other parameters that I setup when creating an account.
Thanks