openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BUILD_FILE_PATH: post: tags: - SLTR summary: Set up access path to files for all OS operationId: /rfc/BUILD_FILE_PATH requestBody: content: application/json: schema: properties: FILE: type: string maxLength: 15 description: File name INPATH: type: string maxLength: 55 description: File directory required: - FILE - INPATH responses: '200': description: OK content: application/json: schema: properties: OUTPATH: type: string maxLength: 70 description: Access path for all OS '400': description: Bad request. 5XX: description: Unexpected error.