openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/CRM_IC_SCRIPTING_LIST_UBFITEMS: post: tags: - CRM_IC_SCRIPTING_PERSIST summary: Get list of XML documents. operationId: /rfc/CRM_IC_SCRIPTING_LIST_UBFITEMS requestBody: content: application/json: schema: properties: FIELDID: type: string maxLength: 32 description: Unbound field ID (Interactive Scripting) ITEMSTABLE: type: array items: type: object properties: MANDT: type: string maxLength: 3 description: Client FIELDID: type: string maxLength: 32 description: Interactive Scripting Field ID ITEMSEQNO: type: integer format: int64 description: Item Sequence Number ITEMRATING: type: integer format: int32 description: Item Rating ITEMSELECTED: type: string maxLength: 1 description: Item Selected ITEMVALUE: type: string maxLength: 64 description: Item Value required: - FIELDID responses: '200': description: OK content: application/json: schema: properties: ITEMSTABLE: type: array items: type: object properties: MANDT: type: string maxLength: 3 description: Client FIELDID: type: string maxLength: 32 description: Interactive Scripting Field ID ITEMSEQNO: type: integer format: int64 description: Item Sequence Number ITEMRATING: type: integer format: int32 description: Item Rating ITEMSELECTED: type: string maxLength: 1 description: Item Selected ITEMVALUE: type: string maxLength: 64 description: Item Value '400': description: Bad request. 5XX: description: Unexpected error.