Santé plateforme
Vérifie que l'API répond. Réservé aux super administrateurs.
super-admin
Exemple
curl -X GET "http://delyo.welink-ci.com/api/v1/admin/health" \
-H "Authorization: Bearer <votre_token>" \
-H "Accept: application/json"
const res = await fetch("http://delyo.welink-ci.com/api/v1/admin/health", {
method: "GET",
headers: {
Authorization: "Bearer <votre_token>",
Accept: "application/json",
},
});
$response = Http::withToken('<votre_token>')
->acceptJson()
->get('http://delyo.welink-ci.com/api/v1/admin/health');
Réponse
{
"status": "ok"
}