Skip to main content

Partner integration health check

GET /partner/health-check
GET /v1/partner/health-check
GET /v2/partner/health-check
GET /v3/partner/health-check
devhttps://api.sandbox.ovok.com

Unauthenticated liveness ping for partner load balancers and sandbox smoke checks. Always returns { status: "ok", healthy: true, timestamp } when the handler is reachable. Mounted at version-neutral, v1, v2 and v3 paths so older partner SDKs keep working as the surrounding API evolves.

Responses

CodeDescription
200Success.
400The request could not be operated by the server.
401The resource owner or authorization server denied the request.
404The requested resource could not be found.
422The request could not be validated by the server.
500The server encountered an unexpected condition. Please try again later.

200PartnerHealthResponseDto (application/json)

Liveness ping for the Partner integration surface.

  • status: string (required) — Always "ok" when the handler responds — non-200 surfaces a real failure.
  • healthy: boolean (required) — Boolean mirror of status for clients that only inspect this field.
  • timestamp: string (required) — ISO-8601 timestamp the response was generated at, server clock.

Example

{
"status": "ok",
"healthy": true,
"timestamp": {}
}