Auth Server health check

Health Check API

Endpoint:
GET /relid/authserver/health

Description:
Provides a simple way to verify if the REL-ID AuthServer service is up and running. Typically used for monitoring or automated system health checks.


🔐 Authentication

No authentication required.


📥 Request Headers

No headers required.


📥 Query Parameters

No query parameters.


📤 Request Body

No request body.


📬 Response

An HTTP status code is returned. 200 OK indicates the service is operational.


📘 Example Request (cURL)

curl 'https://auth.relid.com:8006/relid/authserver/health' \
  -X GET

📘 Example Response

HTTP/1.1 200 OK
Content-Length: 0
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
Strict-Transport-Security: max-age=31536000 ; includeSubDomains
X-Frame-Options: DENY

📝 Notes

  • This endpoint is often used by load balancers, uptime monitoring tools, or orchestration systems like Kubernetes.