#anuragIcodelabs
1 messages · Page 1 of 1 (latest)
hi! do you have more context like the exact API call you're making or the acct_xxx ID of the account you created?
yes right
after that making the stripe accountLinks create
to redirect over the stripe page
what's the exact API call you're making(https://support.stripe.com/questions/finding-the-id-for-an-api-request) or the acct_xxx ID of the account you created?
stripe.accounts.create({
type: 'express',
// country: STRIPE_ACCOUNT_COUNTRY,
email: user.data.data.attributes.email,
capabilities: {
card_payments: { requested: true },
transfers: { requested: true },
},
});
}
I assume your own platform account is in Canada?
overall, either :
- ask the user where they are and pass that country into the API yourself
- on https://dashboard.stripe.com/test/settings/connect/express , make sure you enable all the countries you want to support, those are the ones where the customer can pick from in the dropdown.
yes i want to enable all the countries
cool, then you need to do it on that page
thanks, I'll let you know