Skip to main content
Skip table of contents

Distribution Rules

Addresses with distribution rules of routing such as queues to agent mapping, multi-steps per queue, agent reservation, priority routing, queue priority (In progress)

Queues To Agent Mapping

Queues to Agents are mapped based on the attributes assigned to the agents. Within each queue, we can create multiple steps. Each step has an associated criteria and a timeout period, which is used to find agents that meet the criteria.

All agents that fulfill the criteria specified by all the steps fall within that queue, or in other words, are mapped to that queue.

image-20240729-120228.png

Multi Steps per Queue

As discussed above, we can have multiple steps associated with each queue. The purpose of having multiple steps within a queue is to ensure that the chat is assigned to an agent as soon as possible. To understand this more clearly, we need to first understand how the process of finding an agent works by following steps mentioned below:

Step Timer Initialization

Once the chat is enqueued, a step timer is started based on the timeout value associated with the first step.

Agent Search in First Step:

The Routing Engine (RE) will try to find an agent that fulfills the criteria mentioned in the first step.

Move to the Next Step

The RE will move to the next step if the step timer expires and no suitable agent is found. The timer for the second step will be started, and the system will now iterate from the first step to the second step, trying to reserve an agent available for any of these steps.

Increment to Subsequent Steps

If the timer for the second step expires, the RE will move to the third step. It will first look for agents associated with the first step, then the second step, and finally the third step.

Continual Process

This process continues, with the system iterating through all the steps in sequence. The goal is to find the best available agent who meets the criteria for the highest priority step. If no such agent is available, the system will attempt to find an agent to fulfill the criteria for the subsequent steps.

The whole purpose is to try and find the best available agent that fulfills the topmost step criteria. If that's not possible, the system will at least find an agent that fulfills the lower-step criteria.

Agent Reservation

The agent reservation within a single step follows this process:

  1. Sorting Agents: All agents are sorted based on the longest availability.

  2. Validation: Agents are filtered to ensure they are available on the MRD and are not already active in the conversation for which this task is created.

  3. Agent Selection: From the sorted and validated agents, the one with the least active tasks will be reserved for this new task.

By following the above reservation process, it is ensured that the agents are assigned chats evenly within a single step.

Priority Routing

Priority routing is a feature of the system that allows us to route a chat with higher priority compared to normal priority. This is achieved by assigning a specific label to a customer. Each label has a priority value associated with it, which is configured in the controller. For more details, please refer to this document.

Queue Priority (In Progress)

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.