openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BSP_URL_GENERATION: post: tags: - SBSP_URL_GENERATION operationId: /rfc/BSP_URL_GENERATION requestBody: content: application/json: schema: properties: LOGICAL_TARGET_SYSTEM: type: string default: ' ' maxLength: 10 NODE_DATA: type: string maxLength: 255 NO_HTTP_REPLACE: type: string default: ' ' maxLength: 1 TARGET_SYSTEM: type: string default: ' ' maxLength: 32 USAGE_MODE: type: string maxLength: 2 USE_PRES_SERVER: type: string default: A maxLength: 1 responses: '200': description: OK content: application/json: schema: properties: GENERATED_URL: type: string maxLength: 2000 '400': description: Bad request. 5XX: description: Unexpected error.