openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/DB2_CCMS_WRITE_CONINI: post: tags: - SDB2CCMS summary: writes the connect.ini file operationId: /rfc/DB2_CCMS_WRITE_CONINI requestBody: content: application/json: schema: properties: BACKUP: type: integer format: int32 CONNECT_INI_TABLE: type: array items: type: object properties: LINE: type: string maxLength: 255 description: Line required: - BACKUP responses: '200': description: OK content: application/json: schema: properties: RC: type: integer format: int32 description: message field REASON: type: string maxLength: 255 description: message field CONNECT_INI_TABLE: type: array items: type: object properties: LINE: type: string maxLength: 255 description: Line '400': description: Bad request. 5XX: description: Unexpected error.