openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB6_ALM_GET_MESSAGE_TEXT: post: tags: - SDB6MON summary: 'DB6: get alert message text' operationId: /rfc/DB6_ALM_GET_MESSAGE_TEXT requestBody: content: application/json: schema: properties: LANGUAGE: type: string maxLength: 1 description: R/3-System, aktuelle Sprache MESSAGE_NUMBER: type: integer format: int64 description: Messages, message number required: - LANGUAGE - MESSAGE_NUMBER responses: '200': description: OK content: application/json: schema: properties: MESSAGE_TEXT: type: string maxLength: 73 description: Message text '400': description: Bad request. 5XX: description: Unexpected error.