GET
/
health
{
  "success": true,
  "message": "<string>",
  "data": "<any>",
  "error": {
    "message": "<string>",
    "type": "<string>",
    "param": "<string>",
    "code": "<string>"
  }
}

Example Usage

For complete API documentation and examples, please refer to your Swagger UI.
curl -X 'GET' \
  'https://localhost:8080/health' \
  -H 'accept: application/json'

Query Parameters

mongo_db_check
integer | null
default:1

Response

Successful Response

success
boolean
required

Indicates whether the request was successful.

message
string | null

A brief message about the response.

data
any

The payload of the response.

error
object | null

Detailed error information, if applicable.