GET
/api/livezLiveness probe
Does not touch Postgres/OpenSearch — always 200 while the process is up.
Responses
200 Alive
statusenumrequiredokcURL
curl -X GET https://osawebhook.defenderx.sentrixsolution.com/api/livezJavaScript
const res = await fetch("https://osawebhook.defenderx.sentrixsolution.com/api/livez", {
method: "GET"
});
const data = await res.json();Response 200
{
"status": "ok"
}