我正在構建一個非常簡單的付款表單,用戶可以在其中輸入金額和感謝信息。我已經成功地處理了金額,但我無法添加消息字段並讓它通過!在PayPal API付款中包含消息/註釋字段
這裏只是我的JavaScript的支付功能:
payment: function(data, actions) {
return actions.payment.create({
payment: {
transactions: [
{
amount: {
total: window.transactionAmount,
currency: 'GBP'
},
note_to_payee: document.getElementById('custom-message').value,
description: 'A gift to Martin.',
custom: 'This is a test custom field',
payee: {
"email": "[email protected][hidden].com"
}
}
]
},
experience: {
input_fields: {
no_shipping: 1,
allow_note: true
}
}
});
},
我已經嘗試設置custom
和note_to_payee
但也似乎被記錄在任一電子郵件通知或將記錄數據在收件人的帳戶中。
我也嘗試打開付款人在體驗配置中設置allow_note: true
來添加註釋的功能,但它什麼都不做!
請幫忙,任何通過付款的小消息都是我需要的方式。