Webex · Schema

HuntPolicyEssentialSelection

* `CIRCULAR` - This option cycles through all agents after the last agent that took a call. It sends calls to the next available agent. * `REGULAR` - Send the call through the queue of agents in order, starting from the top each time. * `SIMULTANEOUS` - Sends calls to all agents at once * `UNIFORM` - Sends calls to the agent that has been idle the longest. If they don't answer, proceed to the next agent who has been idle the second longest, and so on until the call is answered. * `WEIGHTED` - Sends call to idle agents based on percentages you assign to each agent (up to 100%).

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
View JSON Schema on GitHub

JSON Schema

webex-huntpolicyessentialselection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HuntPolicyEssentialSelection",
  "title": "HuntPolicyEssentialSelection",
  "type": "string",
  "enum": [
    "CIRCULAR",
    "REGULAR",
    "SIMULTANEOUS",
    "UNIFORM",
    "WEIGHTED"
  ],
  "description": " * `CIRCULAR` - This option cycles through all agents after the last agent that took a call. It sends calls to the next available agent.\n * `REGULAR` - Send the call through the queue of agents in order, starting from the top each time.\n * `SIMULTANEOUS` - Sends calls to all agents at once\n * `UNIFORM` - Sends calls to the agent that has been idle the longest. If they don't answer, proceed to the next agent who has been idle the second longest, and so on until the call is answered.\n * `WEIGHTED` - Sends call to idle agents based on percentages you assign to each agent (up to 100%).\n"
}