创建付款后,payout_batch_id
(payoutId)将作为响应显示在控制台中。
如何从响应或其他任何方式获取PayPal payout_batch_id
并将其分配给变量(var payoutId
)?
//After the creation of payout, I managed to get a response
paypal.payout.create(create_payout_json, sync_mode, function (error, payout) {
if (error) {
console.log(error.response);
throw error;
} else {
console.log("Create Single Payout Response");
console.log(payout);
}
});
//How to I get this? I need this to check the payout.
var payoutId = ;
paypal.payout.get(payoutId, function (error, payout) {
if (error) {
console.log(error);
throw error;
} else {
console.log("Get Payout Response");
console.log(JSON.stringify(payout));
}
});
请帮助!谢谢 :) 我正在使用Ionic和Node.js。