Readiness

Health Readiness

Unprotected endpoint for checking if worker can receive requests

GET/health/readiness
Authorization
Response

Successful Response

Body
any
Request
const response = await fetch('/health/readiness', {
    method: 'GET',
    headers: {},
});
const data = await response.json();

Health Readiness Options

Options endpoint for health/readiness check.

OPTIONS/health/readiness
Authorization
Response

Successful Response

Body
any
Request
const response = await fetch('/health/readiness', {
    method: 'OPTIONS',
    headers: {},
});
const data = await response.json();