healthcheck
Performs a healthcheck
This will return 200 and a JSON object with relevant status information when the service is running and healthy.
get/healthcheck
Response
An object detailing the status of the service and the involved components.
Example response
{
"status": "pass",
"details": {
"MongoDB": {
"status": "pass"
},
"queue": {
"status": "pass"
}
}
}Changes
Changed in 1 of the 24 revisions of this API.2
- ○
added the non-success response with the status
500response-non-success-status-added
- ○
added the optional property
detailsto the response with the200statusresponse-optional-property-added
- ○