openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CCMS_MSS_RFC_DLLDATA: post: tags: - SFMSS_MONITOR summary: call the cfgck rfc svr to get the dlls of disp+work.exe operationId: /rfc/CCMS_MSS_RFC_DLLDATA requestBody: content: application/json: schema: properties: DLLDATA: type: array items: type: object properties: DLLNAME: type: string maxLength: 50 description: Name of the dll HOSTNAME: type: string maxLength: 50 description: name of the host where the dll is found FIRSTDATE: type: string format: date description: first date the dll is recorded FIRSTTIME: type: string maxLength: 6 description: first time the dll is recorded LASTDATE: type: string format: date description: the date of the last check of the exe LASTTIME: type: string maxLength: 6 description: the time of the last check of the executable DLLPATH: type: string maxLength: 255 description: path to the dll DLLSIZE: type: integer format: int32 description: size of the dll DLLVERSION: type: string maxLength: 30 description: version of the dll DLLMODDATE: type: string maxLength: 30 description: last modifiction date of the dll DLLDESC: type: string maxLength: 70 description: description of the dll responses: '200': description: OK content: application/json: schema: properties: DLLDATA: type: array items: type: object properties: DLLNAME: type: string maxLength: 50 description: Name of the dll HOSTNAME: type: string maxLength: 50 description: name of the host where the dll is found FIRSTDATE: type: string format: date description: first date the dll is recorded FIRSTTIME: type: string maxLength: 6 description: first time the dll is recorded LASTDATE: type: string format: date description: the date of the last check of the exe LASTTIME: type: string maxLength: 6 description: the time of the last check of the executable DLLPATH: type: string maxLength: 255 description: path to the dll DLLSIZE: type: integer format: int32 description: size of the dll DLLVERSION: type: string maxLength: 30 description: version of the dll DLLMODDATE: type: string maxLength: 30 description: last modifiction date of the dll DLLDESC: type: string maxLength: 70 description: description of the dll '400': description: Bad request. 5XX: description: Unexpected error.