Health check

Use this request to check the health of the ePAL application and your connection to it.

Use the following URL and a GET operation to send this request:
{epal_url}/health
For example:
https://api.epalglobal.com//health

Details

The following table lists some details about this request:

Table 1. Request Details
Detail Value
Operation GET
Endpoint /health
Field Response

Response Parameters

The response to a successful request contains the following fields:

Table 2. Response Parameters
Response Parameter Details Description
environment
  • Type: String
The name of the environment.
status
  • Type: String
The status of the environment.
timestamp
  • Type: String
The time and date when the health check was performed.
uptime
  • Type: Number
The period duting which the environment is up and running.

Example Response

The following is an example response:

{
  "status": "ok",
  "timestamp": "2024-01-01T00:00:00.000Z",
  "uptime": 3600.123,
  "environment": "development"
}