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}/healthFor
example:
https://api.epalglobal.com//healthDetails
The following table lists some details about this request:
| Detail | Value |
|---|---|
| Operation | GET |
| Endpoint | /health |
| Field | Response |
Response Parameters
The response to a successful request contains the following fields:
| Response Parameter | Details | Description |
|---|---|---|
environment |
|
The name of the environment. |
status |
|
The status of the environment. |
timestamp |
|
The time and date when the health check was performed. |
uptime |
|
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"
}