@@ -27,8 +27,34 @@ tags:
|
||||
description: Operations related to exports
|
||||
- name: AuthService
|
||||
description: Operations related to authentication
|
||||
- name: HealthService
|
||||
description: Operations related to health
|
||||
|
||||
paths:
|
||||
/health:
|
||||
get:
|
||||
operationId: isHealthy
|
||||
tags:
|
||||
- HealthService
|
||||
summary: Provide health endpoint
|
||||
description: See if the service is up and running
|
||||
security:
|
||||
- {}
|
||||
responses:
|
||||
"200":
|
||||
description: Healthy service.
|
||||
headers:
|
||||
RateLimit:
|
||||
$ref: "#/components/headers/RateLimit"
|
||||
"400":
|
||||
$ref: "#/components/responses/InvalidRequest"
|
||||
"401":
|
||||
$ref: "#/components/responses/Unauthorized"
|
||||
"429":
|
||||
$ref: "#/components/responses/TooManyRequests"
|
||||
"500":
|
||||
$ref: "#/components/responses/InternalError"
|
||||
|
||||
/client:
|
||||
post:
|
||||
operationId: createClient
|
||||
|
||||
Reference in New Issue
Block a user