Используя следующую строку кода, я смог получить подробную информацию о транзакции. -
"return actions.order.capture (). Then (функция (подробности)"
Ниже приводится полный рабочий код -
paypal.Buttons({
createOrder: function (data, actions) {
// This function sets up the details of the transaction, including the amount and line item details.
return actions.order.create({
purchase_units: [{
amount: {
currency_code: 'USD',
value: '<%=bookingAmount%>'
}
}]
});
},
onApprove: function (data, actions) {
// Capture the transaction funds
return actions.order.capture().then(function (details) {
console.log(JSON.stringify(details));
});
}
}).render('#paypal-button-container');