← Retour à la liste des opérations
Requête

health

health: String!

Informations d'appel

Point d'accès

https://api.revclic.com/

Méthode

POST

Authentification

Jeton Bearer (JWT)

Retourne

String!

Arguments

Cette opération n'attend aucun paramètre.

Exemple de requête GraphQL

query GetHealth {
  health
}

Exemple de variables

{}

Payload JSON complet

{
  "query": "query GetHealth {\n  health\n}",
  "variables": {}
}

Exemple cURL à tester

curl -X POST https://api.revclic.com/ \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <token>" \
  -d '{
  "query": "query GetHealth {\n  health\n}",
  "variables": {}
}'