#codecoolkid
1 messages · Page 1 of 1 (latest)
Hi, can you share the request id where you're seeing this error? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request. I think I know what the issue might be but I just want to confirm it.
Sure this is the id: req_0WDZ8GOonpYTqO
The issue here is that the MX account has to be under 'recipient service agreement', https://stripe.com/docs/connect/service-agreement-types#recipient to work as part of the Cross border payouts: https://stripe.com/docs/connect/cross-border-payouts#specs.
If Im using this endpoint to create the accounts:
https://stripe.com/docs/api/accounts/create
What is the property where I should set recipient?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Is it this one:
tos_acceptance.service_agreement
optional
The user’s service agreement type.
You'd need specify it here: tos_acceptance: {service_agreement: 'recipient'} so you can use the Cross border payouts.
Oh got it thank you!