openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CRM0_WRITE_CRMPAROLTP: post: tags: - CRM0 operationId: /rfc/CRM0_WRITE_CRMPAROLTP requestBody: content: application/json: schema: properties: I_CONSUMER: type: string maxLength: 10 I_DELETE_MODE: type: string maxLength: 1 I_PARNAME: type: string maxLength: 64 I_PARNAME2: type: string maxLength: 32 I_PARNAME3: type: string maxLength: 20 I_PARVAL1: type: string maxLength: 255 I_PARVAL2: type: string maxLength: 255 TI_CRMPAROLTP: type: array items: type: object properties: CLIENT: type: string maxLength: 3 description: Client PARNAME: type: string maxLength: 64 description: Parameter Name PARNAME2: type: string maxLength: 32 description: Parameter Name 2 PARNAME3: type: string maxLength: 20 description: Parameter Name 3 CONSUMER: type: string maxLength: 10 description: User of R/3 Adaptor Functionality PARVAL1: type: string maxLength: 255 description: Parameter Value PARVAL2: type: string maxLength: 255 description: Parameter Value 2 responses: '200': description: OK content: application/json: schema: properties: E_STATUS: type: string maxLength: 1 TI_CRMPAROLTP: type: array items: type: object properties: CLIENT: type: string maxLength: 3 description: Client PARNAME: type: string maxLength: 64 description: Parameter Name PARNAME2: type: string maxLength: 32 description: Parameter Name 2 PARNAME3: type: string maxLength: 20 description: Parameter Name 3 CONSUMER: type: string maxLength: 10 description: User of R/3 Adaptor Functionality PARVAL1: type: string maxLength: 255 description: Parameter Value PARVAL2: type: string maxLength: 255 description: Parameter Value 2 '400': description: Bad request. 5XX: description: Unexpected error.