mirror of
https://github.com/logos-messaging/logos-delivery-rest-api.git
synced 2026-07-23 19:53:16 +00:00
27 lines
707 B
YAML
27 lines
707 B
YAML
get:
|
|
summary: Get node health status
|
|
description: Retrieve status of a Logos Delivery node.
|
|
operationId: healthcheck
|
|
tags:
|
|
- health
|
|
responses:
|
|
'200':
|
|
description: Health report of a Logos Delivery node and its protocols.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: "./schemas/apitypes.yaml#/HealthReport"
|
|
'500':
|
|
description: Internal server error
|
|
content:
|
|
text/plain:
|
|
schema:
|
|
type: string
|
|
'503':
|
|
description: Node not initialized or having issues
|
|
content:
|
|
text/plain:
|
|
schema:
|
|
type: string
|
|
example: Node is not initialized
|