openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BTF_CONCATENATE: post: tags: - SBTF operationId: /rfc/BTF_CONCATENATE requestBody: content: application/json: schema: properties: CFG_STANDARD: type: array items: type: object properties: NAME: type: string description: BTF Configuration Name VALUE: type: string description: BTF Configuration Value ENCODING: type: string description: Character Set ENCODING_2: type: string description: Character Set TEXT_IN: type: string format: byte description: Text TEXT_IN_2: type: string format: byte description: Text required: - CFG_STANDARD - ENCODING - ENCODING_2 - TEXT_IN - TEXT_IN_2 responses: '200': description: OK content: application/json: schema: properties: TEXT_OUT: type: string format: byte description: Text '400': description: Bad request. 5XX: description: Unexpected error.