openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CMS_CI_START_SERVICE: post: tags: - CMS_CI operationId: /rfc/CMS_CI_START_SERVICE requestBody: content: application/json: schema: properties: IV_COMMAND: type: string maxLength: 30 description: CMS Method IV_IMPORTXML: type: string description: XML Data IV_SERVICE: type: string maxLength: 60 description: 'CMS: Service (Package, Class)' IV_TOKEN: type: string maxLength: 40 description: 'CMS: Token' required: - IV_COMMAND - IV_IMPORTXML - IV_SERVICE - IV_TOKEN responses: '200': description: OK content: application/json: schema: properties: ES_EXCEPTION: type: object properties: DOMNAM: type: string maxLength: 10 description: 'CMS: Domain Name' SYSNAM: type: string maxLength: 10 description: 'CMS: System Name' SERVICE: type: string maxLength: 60 description: 'CMS: Service (Package, Class)' COMMAND: type: string maxLength: 30 description: CMS Method ERROR: type: string maxLength: 80 description: CMS Error SEVERITY: type: string maxLength: 1 description: CMS Severity SPRAS: type: string maxLength: 1 description: Language Key of Current Text Environment TEXT: type: string maxLength: 132 description: 'CMS: Error Text' METHODPTR: type: string maxLength: 60 description: CMS Alert Pointer MSGID: type: string maxLength: 20 description: Message Class MSGTY: type: string maxLength: 1 description: Message Type MSGNO: type: integer format: int64 description: Message Number MSGV1: type: string maxLength: 50 description: Message Variable MSGV2: type: string maxLength: 50 description: Message Variable MSGV3: type: string maxLength: 50 description: Message Variable MSGV4: type: string maxLength: 50 description: Message Variable EV_EXPORTXML: type: string description: CMS Alert Log '400': description: Bad request. 5XX: description: Unexpected error.