Hello , I am using this checkout api("https://api-m.sandbox.paypal.com/v2/checkout/orders/") for multi seller transaction with platform fees object. My request json: { "intent": "CAPTURE", "purchase_units": [ { "reference_id": "REFID-1", "payee": { "email_address": "" }, "amount": { "currency_code": "USD", "value": "12.00" }, "payment_instruction": { "disbursement_mode": "INSTANT", "platform_fees": [ { "amount": { "currency_code": "USD", "value": "2.00" } } ] } } ] } Paypal api throws this error. { "name": "UNPROCESSABLE_ENTITY", "details": [ { "location": "body", "issue": "PAYEE_ACCOUNT_INVALID", "description": "Payee account specified is invalid. Please check the `payee.email_address` or `payee.merchant_id` specified and try again. Ensure that either `payee.merchant_id` or `payee.email_address` is specified." } ], "message": "The requested action could not be performed, semantically incorrect, or failed business validation.", "debug_id": "3afa9c6bd939e", "links": [ { "href": "https://developer.paypal.com/docs/api/orders/v2/#error-PAYEE_ACCOUNT_INVALID", "rel": "information_link", "method": "GET" } ] } kindly provide suggestion regarding this.
... View more