为什么我汇款时,钱只流向一个账户,而没有佣金流向第二个账户?所有帐户都已建立,没有任何限制,所需的一切都在那里。
我的要求是:
request.post(PAYPAL_API + '/v2/checkout/orders', {
auth: {
user: CLIENT,
pass: SECRET
},
headers: {
"Content-Type": "application/json",
},
body: {
"intent": "CAPTURE",
"purchase_units": [{
"amount": {
"currency_code": "USD",
"value": "1.00"
},
"payee": {
"email_address": "seller account"
},
"description": "Item 1",
"payment_instruction": {
"disbursement_mode": "INSTANT",
"platform_fees": [{
"amount": {
"currency_code": "USD",
"value": "0.25"
},
"payee": {
"email_address": "fee account"
},
}]
}
}],
},
json: true
},发布于 2020-01-01 05:28:21
您( API调用者的clientID)是PayPal合作伙伴吗?
PayPal Commerce Platform功能和参数(如platform_fees )仅适用于经批准的PayPal合作伙伴...否则显然会被忽视。
这里有一个链接的表单,您可以在其中联系PayPal,了解如何成为合作伙伴:https://developer.paypal.com/docs/commerce-platform/onboarding/partner-onboarding/ (如果您没有收到回复,很遗憾,这很可能是因为您的业务目前不符合条件。)
https://stackoverflow.com/questions/59016778
复制相似问题