openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/ABAP_DOCU_CALL_EXTERNALS: post: tags: - ABAP_DOCU operationId: /rfc/ABAP_DOCU_CALL_EXTERNALS requestBody: content: application/json: schema: properties: PROGRAM_NAME: type: string maxLength: 30 description: Program Name PROGRAM_TYPE: type: string maxLength: 4 description: Program Type required: - PROGRAM_NAME - PROGRAM_TYPE responses: '200': description: OK '400': description: Bad request. 5XX: description: Unexpected error.