Sandbox
XOF
Min: 2000000 | Max: 2000000
Code:
const fetch = require('node-fetch');
const bodyData = {
  "payoutId": "19b8e573-8870-41ff-aa77-43d3f9ee5375",
  "amount": "",
  "currency": "XOF",
  "country": "BEN",
  "correspondent": "MTN_MOMO_BEN",
  "payer": {
    "type": "MSISDN",
    "address": {
      "value": "22951345129"
    }
  },
  "customerTimestamp": "2024-11-27T14:34:09.547Z",
  "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);