Skip to main content
GET
/
api
/
lifecycle
/
healthcheck
Typescript (SDK)
import { Authlete } from "@authlete/typescript-sdk";

const authlete = new Authlete();

async function run() {
  const result = await authlete.lifecycle.getApiLifecycleHealthcheck();

  console.log(result);
}

run();
"OK"

Query Parameters

extended
boolean

If true, perform extended health checks (e.g. database connectivity).

Response

OK

The response is of type string.