2020年12月20日星期日

stripe express connected accounts agreement type error

just wondering if you have ever had problems with express accounts and the agreement type in order to transfer to cross borders individuals. when I create an account for a user through my stripe dashboard, it creates the right agreement type which is "Recipient" but when a user creates the account by himself through the mobile app of the platform, the account will be created with the wrong agreement type which is the "full". this is the error shown: Funds can't be sent to accounts located in CA when the account is under the full service agreement. To learn more, see https://stripe.com/docs/connect/service-agreement-types.

so, I tried by updating the code adding:

const account = await stripe.accounts.update(    '',    {      tos_acceptance: {        service_agreement: 'recipient',      },    }  );  

but I would not work and when the user does the onboarding process from the mobile app, still appears with the wrong agreement type which is "full"

https://stackoverflow.com/questions/65383846/stripe-express-connected-accounts-agreement-type-error December 21, 2020 at 03:19AM

没有评论:

发表评论