为什么不在 PayPal API 中工作 "platform_fees"?
Why not working "platform_fees" in PayPal API?
为什么我汇款时,钱只到一个账户,而第二个账户没有佣金?所有账户都设置好了,没有限制,该有的都有。
我的要求:
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
},
您(API 来电者的 clientID)是 PayPal 合作伙伴吗?
PayPal Commerce Platform 功能和参数,例如 platform_fees
仅适用于已批准的 PayPal 合作伙伴......否则显然会被忽略。
此处链接了一个表格,您可以联系 PayPal 以成为合作伙伴:https://developer.paypal.com/docs/commerce-platform/onboarding/partner-onboarding/(如果您没有收到回复,很遗憾,这很可能是因为您的企业目前不符合条件.)
为什么我汇款时,钱只到一个账户,而第二个账户没有佣金?所有账户都设置好了,没有限制,该有的都有。
我的要求:
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
},
您(API 来电者的 clientID)是 PayPal 合作伙伴吗?
PayPal Commerce Platform 功能和参数,例如 platform_fees
仅适用于已批准的 PayPal 合作伙伴......否则显然会被忽略。
此处链接了一个表格,您可以联系 PayPal 以成为合作伙伴:https://developer.paypal.com/docs/commerce-platform/onboarding/partner-onboarding/(如果您没有收到回复,很遗憾,这很可能是因为您的企业目前不符合条件.)