我想在Paypal智能按钮中实现付款拆分。 orders api的文档中有付款说明,可以在其中指定费用,但不起作用
paypal
.Buttons({
// Set up the transaction
createOrder: function(data, actions) {
return actions.order.create({
intent: 'CAPTURE',
purchase_units: [
{
amount: {
currency_code: 'USD',
value: '100'
},
payee: { email_address: 'destination_account' },
payment_instruction: {
platform_fees: [
{
amount: {
currency_code: 'USD',
value: '2'
},
payee: {
email_address: 'fees_account'
}
}
]
}
}
]
});
}
但是,它只会向一个帐户汇款。
我也在考虑使用网络挂钩的其他方法,然后先将钱转到费用帐户,然后将其转至destination_account