Consulter le mode de règlement
curl --request GET \
--url https://apidjonanko.tech/web-merchant/settlement-settings \
--header 'authenticationtoken: <api-key>'const options = {method: 'GET', headers: {authenticationtoken: '<api-key>'}};
fetch('https://apidjonanko.tech/web-merchant/settlement-settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://apidjonanko.tech/web-merchant/settlement-settings"
headers = {"authenticationtoken": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://apidjonanko.tech/web-merchant/settlement-settings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"authenticationtoken: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"mode": "T0",
"time": "18:00",
"timezone": "Africa/Abidjan",
"lastSettlementAt": "2026-09-21T18:00:12.000Z",
"hasPrimaryAccount": true,
"primaryAccountType": "wave",
"fees": {
"mobileMoneyRate": 0.02,
"bankFixed": 1500
}
}{
"statusCode": 401,
"message": "Invalid API credentials",
"error": "Unauthorized"
}Reversements
Consulter le mode de règlement
Mode de règlement (MANUAL, T0, T1), heure, dernier règlement automatique et grille de frais.
GET
/
web-merchant
/
settlement-settings
Consulter le mode de règlement
curl --request GET \
--url https://apidjonanko.tech/web-merchant/settlement-settings \
--header 'authenticationtoken: <api-key>'const options = {method: 'GET', headers: {authenticationtoken: '<api-key>'}};
fetch('https://apidjonanko.tech/web-merchant/settlement-settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://apidjonanko.tech/web-merchant/settlement-settings"
headers = {"authenticationtoken": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://apidjonanko.tech/web-merchant/settlement-settings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"authenticationtoken: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"mode": "T0",
"time": "18:00",
"timezone": "Africa/Abidjan",
"lastSettlementAt": "2026-09-21T18:00:12.000Z",
"hasPrimaryAccount": true,
"primaryAccountType": "wave",
"fees": {
"mobileMoneyRate": 0.02,
"bankFixed": 1500
}
}{
"statusCode": 401,
"message": "Invalid API credentials",
"error": "Unauthorized"
}Authorizations
JWT obtenu via POST /user/login-merchant. À passer tel quel, sans préfixe Bearer.
Query Parameters
Référence de votre compte marchand (celle choisie à l'inscription, ex. beautyshop).
Example:
"beautyshop"
Response
Paramètres de règlement.
MANUAL(défaut) — vous lancez vos demandes de reversement vous-même.T0— reversement automatique chaque jour à l'heure choisie.T1— reversement automatique tous les deux jours à l'heure choisie.
Available options:
MANUAL, T0, T1 Heure du règlement automatique, HH:mm. null en mode MANUAL.
Example:
"18:00"
Example:
"Africa/Abidjan"
Date du dernier règlement automatique exécuté.
Un compte de reversement principal est requis pour T0 / T1.
Example:
"wave"
Show child attributes
Show child attributes
