#ovibaidya72
1 messages · Page 1 of 1 (latest)
Can you share the request ID For the API request that triggers this error?
Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
req_XrVcYwFpOxkcoV
This request has nothing to do with Checkout Sessions. It's a request to /v1/accounts. What are you trying to do?
Creating Account
In that case the error message is clear. You can't just request transfers without including card_payments
return $this->stripe->accounts->create([
'email' => $email,
'type' => 'express',
'individual' => [
'first_name' => $first_name,
'last_name' => $last_name,
],
'business_type' => 'individual',
'country' => 'SG',
'capabilities' => ['transfers' => ['requested' => true]],
'tos_acceptance' => ['service_agreement' => 'recipient'],
]);
Error:
Your platform needs approval for accounts to have requested the transfers capability without the card_payments capability. If you would like to request transfers without card_payments, please contact us via https://support.stripe.com/contact.
I would like to use Cross-border payouts. Cross-border payouts only work with the recipient service agreement. Connected accounts under the recipient service agreement can’t process payments or request the card_payments capability.
So you are following this guide: https://stripe.com/docs/connect/service-agreement-types#choosing-type and getting the error?
Yes, Right.
What should I do now?