Tom
02/02/2023, 5:57 PMSAAF
02/02/2023, 5:59 PMTom
02/02/2023, 6:00 PMAaron
02/02/2023, 6:05 PM/health-check
endpoint that does exactly what Tom describes.
{
"request": {
"url": "/health-check"
},
"response": {
"status": 200,
"bodyFileName": "health-check.json"
}
}
I usually include a bodyFileName
just to make sure that the __files
folder is hooked up, but when hitting the /health-check
I usually just check for the status code.
/// __files/health-check.json
{
"health": "succeeded"
}