Webex · Schema

BulkRequestItemDTOOverridesDTO

List of items in the bulk request.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
itemIdentifier integer Unique item identifier for a bulk operation.
item object
requestAction string Identifier for action type. Possible values are `SAVE` and `DELETE`.
View JSON Schema on GitHub

JSON Schema

webex-bulkrequestitemdtooverridesdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkRequestItemDTOOverridesDTO",
  "title": "BulkRequestItemDTOOverridesDTO",
  "type": "object",
  "description": "List of items in the bulk request.",
  "properties": {
    "itemIdentifier": {
      "type": "integer",
      "format": "int32",
      "description": "Unique item identifier for a bulk operation.",
      "example": 10
    },
    "item": {
      "$ref": "#/components/schemas/OverridesDTO"
    },
    "requestAction": {
      "type": "string",
      "description": "Identifier for action type. Possible values are `SAVE` and `DELETE`.",
      "example": "SAVE"
    }
  }
}