fix definition of echo endpoint

This commit is contained in:
Uwe Steinmann 2025-01-31 10:14:40 +01:00
parent 327b1c4284
commit 4316b1afee

View File

@ -2071,15 +2071,21 @@ paths:
description: "Invalid status value" description: "Invalid status value"
security: security:
- api_key: [] - api_key: []
/echo: /echo/{data}:
get: get:
tags: tags:
- "misc" - "misc"
summary: "Return what was send in the body" summary: "Return what was send in the path"
description: "Just returns the body content" description: "Just returns the path"
operationId: "echoData" operationId: "echoData"
produces: produces:
- "application/json" - "application/json"
parameters:
- name: "data"
in: "path"
description: "Data to be echoed"
required: true
type: "string"
responses: responses:
"200": "200":
description: "successful operation" description: "successful operation"