openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CRM_IC_SCRIPTING_RENAME_LABEL: post: tags: - CRM_IC_SCRIPTING_PERSIST summary: Rename a label operationId: /rfc/CRM_IC_SCRIPTING_RENAME_LABEL requestBody: content: application/json: schema: properties: LABELID: type: string maxLength: 32 description: Label ID (Interactive Script Editor) NEWLABELID: type: string maxLength: 32 description: New Label ID (Interactive Script Editor) required: - LABELID - NEWLABELID responses: '200': description: OK content: application/json: schema: properties: SUCCESS: type: string maxLength: 1 description: Function was successfully executed '400': description: Bad request. 5XX: description: Unexpected error.