Webex · Schema

CallDistributionGroupDTO

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

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

JSON Schema

webex-calldistributiongroupdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallDistributionGroupDTO",
  "title": "CallDistributionGroupDTO",
  "type": "object",
  "properties": {
    "agentGroups": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AgentGroupDTO"
      },
      "uniqueItems": true
    },
    "order": {
      "type": "integer",
      "format": "int32",
      "description": "The order of this call distribution group.",
      "example": 1
    },
    "duration": {
      "type": "integer",
      "format": "int32",
      "default": 0,
      "description": "(Optional)The duration in seconds after which a contact in queue will be distributed to this group.",
      "example": 2
    }
  }
}