Collect Mobile Money Payment
collections/mobile-money/all
You might want to get all mobile money payments initiated by a an account , here is how to it, Chief π
GET
https://live.chimoney.io/api/v0.1/account/transaction?id=id
Get all mobile money payments initiated by a an account
Headers
Name
Type
Description
X-API-Key*
API_KEY_FROM_DEV_PORTAL
Request Body
Name
Type
Description
id*
PaymentID
{
// transaction detail
}
#Javascript FETCH
var myHeaders = new Headers();
myHeaders.append("X-API-Key", "API_KEY_FROM_DEV_PORTAL");
var raw = "{\n \"id\": \"PaymentID\"\n}";
var requestOptions = {
method: 'GET',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("https://live.chimoney.io/api/v0.1/collections/mobile-money/all", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
#Python REQUESTS
import requests
url = "https://live.chimoney.io/api/v0.1/collections/mobile-money/all"
payload = "{\n \"id\": \"PaymentID\"\n}"
headers = {
'X-API-Key': 'API_KEY_FROM_DEV_PORTAL'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
#PHP cURL
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://live.chimoney.io/api/v0.1/collections/mobile-money/all',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{
"id": "PaymentID"
}',
CURLOPT_HTTPHEADER => array(
'X-API-Key: API_KEY_FROM_DEV_PORTAL'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Yay! It's done.
Last updated