Consulter le dossier de conformité
curl --request GET \
--url https://apidjonanko.tech/web-merchant/compliance \
--header 'authenticationtoken: <api-key>'const options = {method: 'GET', headers: {authenticationtoken: '<api-key>'}};
fetch('https://apidjonanko.tech/web-merchant/compliance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://apidjonanko.tech/web-merchant/compliance"
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/compliance",
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;
}{
"compliance": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "PENDING",
"legalName": "Beauty Shop SARL",
"legalForm": "SARL",
"activity": "<string>",
"rccmNumber": "CI-ABJ-2024-B-12345",
"dfeNumber": "<string>",
"address": "<string>",
"managerName": "<string>",
"managerIdType": "CNI",
"managerIdNumber": "<string>",
"documents": {},
"rejectionReason": "<string>"
},
"requiredDocuments": [
{
"key": "rccm",
"label": "RCCM"
}
],
"limits": {
"plafond": 200000,
"consomme": 75000,
"restant": 125000
}
}{
"statusCode": 401,
"message": "Invalid API credentials",
"error": "Unauthorized"
}Conformité (KYC)
Consulter le dossier de conformité
Statut de la vérification de votre entreprise, liste des documents attendus et plafond mensuel de reversement (200 000 FCFA par défaut, 2 000 000 FCFA une fois le dossier approuvé).
GET
/
web-merchant
/
compliance
Consulter le dossier de conformité
curl --request GET \
--url https://apidjonanko.tech/web-merchant/compliance \
--header 'authenticationtoken: <api-key>'const options = {method: 'GET', headers: {authenticationtoken: '<api-key>'}};
fetch('https://apidjonanko.tech/web-merchant/compliance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://apidjonanko.tech/web-merchant/compliance"
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/compliance",
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;
}{
"compliance": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "PENDING",
"legalName": "Beauty Shop SARL",
"legalForm": "SARL",
"activity": "<string>",
"rccmNumber": "CI-ABJ-2024-B-12345",
"dfeNumber": "<string>",
"address": "<string>",
"managerName": "<string>",
"managerIdType": "CNI",
"managerIdNumber": "<string>",
"documents": {},
"rejectionReason": "<string>"
},
"requiredDocuments": [
{
"key": "rccm",
"label": "RCCM"
}
],
"limits": {
"plafond": 200000,
"consomme": 75000,
"restant": 125000
}
}{
"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"
