Health Check
GET/health
Health Check
Request
Responses
- 200
- 503
The Health Check is successful
- application/json
- Schema
- Example (from schema)
Schema
status string
info objectnullable
property name* objectnullable
status stringrequired
property name* any
error objectnullable
property name* objectnullable
status stringrequired
property name* any
details object
property name* object
status stringrequired
property name* any
{
"status": "ok",
"info": {
"database": {
"status": "up"
}
},
"error": {},
"details": {
"database": {
"status": "up"
}
}
}
The Health Check is not successful
- application/json
- Schema
- Example (from schema)
Schema
status string
info objectnullable
property name* objectnullable
status stringrequired
property name* any
error objectnullable
property name* objectnullable
status stringrequired
property name* any
details object
property name* object
status stringrequired
property name* any
{
"status": "error",
"info": {
"database": {
"status": "up"
}
},
"error": {
"redis": {
"status": "down",
"message": "Could not connect"
}
},
"details": {
"database": {
"status": "up"
},
"redis": {
"status": "down",
"message": "Could not connect"
}
}
}
Loading...