openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BWDT_GET_PARAMETER: post: tags: - BWDT operationId: /rfc/BWDT_GET_PARAMETER requestBody: content: application/json: schema: properties: PARAMETER: type: string maxLength: 20 description: Set/Get parameter ID required: - PARAMETER responses: '200': description: OK content: application/json: schema: properties: VALUE: type: string maxLength: 40 description: Parameter Value '400': description: Bad request. 5XX: description: Unexpected error.