GET
/Common/HealthCheck
Usage Notes
- No authentication required - publicly accessible endpoint
- Use for monitoring systems, load health checks, and uptime verification
- Only verifies API is responding - doesn't check database connectivity or business logic
- Response time can indicate current API performance
Description
Returns a success response with current timestamp if the API is operational. Designed for monitoring systems, load balancer health checks, and connectivity verification. Requires no authentication and returns minimal data for fast response times suitable for frequent polling.
Required Headers
No Authorization Header Required - This endpoint is accessible without authentication.
| Header | Value | Description |
|---|---|---|
| Version | 2.0 | API version identifier |
Example Requests
bash
curl https://api.7g.com.au/Common/HealthCheck \
-H "Version: 2.0"Response Examples
json
{
"result": true,
"message": "Healthy",
"data": "2025-01-30T14:23:45.1234567+10:00"
}