Code:
const fetch = require('node-fetch');
const bodyData = {
"payoutId": "5db7da15-e5e5-406f-8d0c-4e760b82bd73",
"amount": "",
"currency": "XOF",
"country": "BEN",
"correspondent": "MTN_MOMO_BEN",
"payer": {
"type": "MSISDN",
"address": {
"value": "22951345129"
}
},
"customerTimestamp": "2025-04-04T02:10:04.332Z",
"statementDescription": ""
};
const resp =await fetch('https://api.sandbox.pawapay.com/payouts',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer <YOUR_API_KEY>',
},
body: bodyData
});
const data= await resp.json();
console.log(data);