{
"status": "ok"
}
Getting Started
Health check
Validate the CRM connection
GET
/
health
{
"status": "ok"
}
Your Implementation Required
This endpoint must be implemented on your server
Request
No request body required. Enginy will send the API key in the configured header.bash GET /health X-API-Key: your-api-keyResponse
Return any2xx status code to indicate your API is healthy.
string
Status indicator (e.g., “ok”)
{
"status": "ok"
}
Error Responses
| Status | When to Return |
|---|---|
200 | API is healthy |
401 | Invalid or missing API key |
500 | Server error |
Return
401 Unauthorized if the API key is invalid or missing.