$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.mypayga.com/v1/payment',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>' {
"urls": {
"success_url": "https://monsite.com/success-url",
"callback_url": "https://monsite.com/callback-url",
"fail_url": "https://monsite.com/fail-url"
},
"apikey": "stest_abcd1234",
"client_phone": "074121212",
"amount": "100",
"country": "GA",
"network": "AM",
"type":"mobile_money",
"unique_id":"1234",
"firstname":"Client Prenom",
"lastname":"Client Nom",
"email":"email@gmail.com"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
var raw = JSON.stringify({
"urls": {
"success_url": "https://monsite.com/success-url",
"callback_url": "https://monsite.com/callback-url",
"fail_url": "https://monsite.com/fail-url"
},
"apikey": "stest_abcd1234",
"client_phone": "07xxxx",
"amount": "100",
"country": "GA",
"network": "AM",
"type": "mobile_money",
"unique_id": "12z34",
"firstname": "Prenom",
"lastname": "Nom",
"email": "email@gmail.com"
});
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("https://api.mypayga.com/v1/payment", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
import requests
import json
url = "https://api.mypayga.com/v1/payment"
payload = json.dumps({
"urls": {
"success_url": "https://monsite.com/success-url",
"callback_url": "https://monsite.com/callback-url",
"fail_url": "https://monsite.com/fail-url"
},
"apikey": "stest_i1234abcd",
"client_phone": "07xxxx",
"amount": "100",
"country": "GA",
"network": "AM",
"type": "mobile_money",
"unique_id": "12z34",
"firstname": "Prenom",
"lastname": "Nom",
"email": "email@gmail.com"
})
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)