const response = await fetch('http://localhost:3002/api/v1/banking/disburse', {
method: 'POST',
headers: {
"Authorization": "Bearer JWT",
"Content-Type": "application/json"
},
body: JSON.stringify({
"disbursements": [
{
"amount": 100,
"currency": "NGN",
"recipientAccountNumber": "1234567890",
"recipientBankCode": "123456",
"description": "Description of the disbursement"
}
]
}),
});
const data = await response.json();