Skip to content
Last updated

Check the service status.

For the full technical reference, see the OpenAPI specification

Endpoint

  • URL: /api/Services/checkServiceStatus
  • Method: POST

No authentication required — this endpoint is public.

If the SMS Gateway is completely unavailable, this endpoint will return 503 Service Unavailable. Implement appropriate error handling for this case.

Body Parameters

This endpoint does not require any body parameters.

Response Examples

Success (200 OK)

{
    "globalStatus":true,
    "dbStatus":true,
    "servicesStatus":true,
    "errorMessage":"",
    "versionNumber":"27.0.0.13"
}

Response fields

FieldTypeDescription
globalStatusbooleanOverall service availability
dbStatusbooleanDatabase connectivity status
servicesStatusbooleanInternal services availability
errorMessagestringError message if any component is unavailable. Empty string when all systems are operational
versionNumberstringCurrent API version (e.g. 27.1.0.2)