Code:
const fetch = require('node-fetch');
const bodyData = {
"payoutId": "2104a143-8baf-49e2-95e7-af13c4e39cd7",
"amount": "",
"currency": "XOF",
"country": "BEN",
"correspondent": "MOOV_BEN",
"payer": {
"type": "MSISDN",
"address": {
"value": ""
}
},
"customerTimestamp": "2025-04-03T06:21:20.792Z",
"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);