Mobile-money
/payouts/mobile-money
Paying out mobile-money is no rocket science, here is how to it, Chief π
POST https://live.chimoney.io/api/v0.1/payouts/mobile-money
Payout mobile-money
Headers
Name
Type
Description
X-API-Key*
API_KEY_FROM_DEV_PORTAL
Request Body
Name
Type
Description
countryToSend*
Kenya
phoneNumber*
+255700000000
valueInUSD*
1
reference*
String
momoCode*
MPS
{
// transaction detail
}#Javascript FETCH
var myHeaders = new Headers();
myHeaders.append("X-API-KEY", "API_KEY_FROM_DEV_PORTAL");
var raw = "{\n \"momos\": [\n {\n \"countryToSend\": \"Kenya\",\n \"phoneNumber\": \"+254710102720\",\n \"valueInUSD\": 1,\n \"reference\": \"\",\n \"momoCode\": \"MPS\"\n }\n ]\n}";
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("https://live.chimoney.io/api/v0.1/payouts/mobile-money", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));#Python REQUESTS
#PHP cURL
Yay! It's done.
Last updated