Released docs. You are viewing the documentation published with v0.34.0. Development docs are available at Latest.
Liveness
GET
/healthz
const url = 'https://scheduling.example.test/healthz';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://scheduling.example.test/healthzProcess is live. No authentication, no storage, no policy.
Parameters
Section titled “ Parameters ”Header Parameters
Section titled “Header Parameters”traceparent
string
Optional W3C trace context continued in the response.
Responses
Section titled “ Responses ”Success
Headers
Section titled “Headers”cache-control
Every answer is marked no-store, so a booking view is never served from a cache.
traceparent
string
W3C trace context for the request and response.
Problem response: request.method-not-allowed
Media typeapplication/problem+json
object
code
required
string
detail
required
string
status
required
integer
title
required
string
traceId
required
string
type
required
string format: uri
code
required
detail
required
status
required
title
required
type
required
Example
{ "code": "request.method-not-allowed", "detail": "The route exists but not for this method.", "status": 405, "title": "Method not allowed", "type": "https://id.registrystack.org/problems/registry-scheduling/request/method-not-allowed"}Headers
Section titled “Headers”cache-control
Every answer is marked no-store, so a booking view is never served from a cache.
traceparent
string
W3C trace context for the request and response.
Problem response: request.body-too-large
Media typeapplication/problem+json
object
code
required
string
detail
required
string
status
required
integer
title
required
string
traceId
required
string
type
required
string format: uri
code
required
detail
required
status
required
title
required
type
required
Example
{ "code": "request.body-too-large", "detail": "The request body exceeds the accepted size.", "status": 413, "title": "Payload too large", "type": "https://id.registrystack.org/problems/registry-scheduling/request/body-too-large"}Headers
Section titled “Headers”cache-control
Every answer is marked no-store, so a booking view is never served from a cache.
traceparent
string
W3C trace context for the request and response.