openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CRM_IC_SCRIPTING_RENAME_UBFLD: post: tags: - CRM_IC_SCRIPTING_PERSIST summary: Rename the unbound field operationId: /rfc/CRM_IC_SCRIPTING_RENAME_UBFLD requestBody: content: application/json: schema: properties: FIELDID: type: string maxLength: 32 description: Unbound field ID (Interactive Scripting) NEWFIELDID: type: string maxLength: 32 description: New Unbound field ID (Interactive Scripting) required: - FIELDID - NEWFIELDID responses: '200': description: OK content: application/json: schema: properties: SUCCESS: type: string maxLength: 1 description: Function was successfully performed '400': description: Bad request. 5XX: description: Unexpected error.