openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/AS4_GET_PTF_STATUS: post: tags: - STU4_TCC summary: 'iSeries: Get Status for one or more PTF''s' operationId: /rfc/AS4_GET_PTF_STATUS requestBody: content: application/json: schema: properties: HOSTNAME: type: string maxLength: 32 description: Host LICPGM: type: string maxLength: 7 description: 'AS/400: PTF-Status - Name des Lizenzprogramms des PTF' PTF_NUMBER: type: string maxLength: 7 description: 'AS/400: PTF-Status - Nummer des PTF' required: - HOSTNAME - LICPGM - PTF_NUMBER responses: '200': description: OK content: application/json: schema: properties: PTF_STATUS: type: string maxLength: 1 description: 'AS/400: PTF-Status - Rückgabewert' PTF_STATUS_TXT: type: string maxLength: 120 description: 'AS/400: PTF-Status' '400': description: Bad request. 5XX: description: Unexpected error.