Webex · Schema

CallDistributionGroupBulkExportDTO

Call distribution group data for bulk export.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
agentGroups array The agent groups in this call distribution group.
order integer The order of this call distribution group.
duration integer The duration in seconds after which a contact in queue will be distributed to this group.
View JSON Schema on GitHub

JSON Schema

webex-calldistributiongroupbulkexportdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallDistributionGroupBulkExportDTO",
  "title": "CallDistributionGroupBulkExportDTO",
  "type": "object",
  "description": "Call distribution group data for bulk export.",
  "properties": {
    "agentGroups": {
      "type": "array",
      "description": "The agent groups in this call distribution group.",
      "items": {
        "$ref": "#/components/schemas/AgentGroupsBulkExportDTO"
      },
      "uniqueItems": true
    },
    "order": {
      "type": "integer",
      "format": "int32",
      "description": "The order of this call distribution group."
    },
    "duration": {
      "type": "integer",
      "format": "int32",
      "description": "The duration in seconds after which a contact in queue will be distributed to this group."
    }
  }
}