Rate this page:

ACD v1 usage

ACD v1 is the previous version of SmartQueue (ACD v2). It provides functionality to build call queues and process them by connecting to multiple agents. Though we recommend to use SmartQueue (ACD v2), Voximplant still fully support ACD v1 for existing customers.

Recommendation

We recommend using SmartQueue instead of ACD v1.

Contents

Copy URL

How to build a queue with ACD v1

Copy URL
  1. Open Applications in the Voximplant control panel.
  2. Go to your application and switch to the Queues tab.
  3. Click Create queue in the upper right corner (or Create in the center of the screen). Name the queue, assign at least one user, and click Add to confirm the operation. Note that a queue name should be unique within your Voximplant developer account. In this example, the queue's name is "main".
Create a queue

Switch to the Scenarios tab and create a queue scenario with the following code:

Forwarding calls to a queue

Forwarding calls to a queue

First, we require the ACD module, then create a handler for an incoming call. Inside a handler we answer a call and when it connects, put this call to the queue via the enqueueACDRequest method. When an agent is reached, i.e., answers a call, we connect the caller with this agent. Finally, we place the handlers for cases when an agent rejects a call and either side of conversation hangs up.

To add some music while the customer waits in the queue, use the startPlayback method. To start background music, update the previous code as follows (lines 11 and 12):

Adding the background music

Adding the background music

Music automatically stops after agent answers and new audio source is connected to call via sendMediaBetween.

How to manage statuses in ACD v1

Copy URL

There are the following statuses in ACD:

  • Ready. Agent is ready to answer calls, i.e., he or she is treated by ACD as available

  • Online. Initial status. It applies in two cases:

    1. Agent has just logged in at the workplace
    2. We want to unban an agent
  • In Service. Agent is talking with a customer

  • After Service. Agent has finished a conversation. The status can be applied to give an agent some time for filling the forms, making notes in CRM about the customer, etc.

  • Offline. Agent is not logged in

  • Timeout. Agent has a break, e.g., went for lunch

  • DND (Do Not Disturb). Agent is busy by other work not related to answering calls

  • Banned. Agent hasn't answered a call and ACD has banned him or her

Note that all the statuses should be set manually, except for Banned – it is set automatically. The Online status is set automatically only when an agent has logged in.

To summarize, all statuses except for Ready, Offline, and Banned work the same, so different names can be used to track statistics.

In Web SDK, status can be set via the getOperatorACDStatus method and changed via setOperatorACDStatus. However, you can retrieve an agent status from a JS scenario directly via the getStatus method.

Additionally, you can track changing statuses via the ACDStatusUpdated event. The event is triggered when the ACD agent status is changed due to the setOperatorACDStatus call (on any SDK logged in under that user) or due to a server-side event (the agent is banned because of a missed call).

ACDStatusUpdated

ACDStatusUpdated

If you want to use management API, use the acd_status field of the UserInfoType structure returned by the /GetUsers method call now contains an up-to-date value of the current user's ACD status as a string.

In our demo web phone, agent status can be changed via a buttons row:

ACD v1 buttons

Look at the scheme below to familiarize with the status concept:

ACD v1 statuses

How to see reports in ACD v1

Copy URL

In the control panel, go to your application, and switch to the Queues tab. Here can see the list of your ACD queues with an arrow icon on the left. Click on it to expand stats for the queue:

Queue info

There is a Report button on the right, click it to reveal the extended stats:

Queue extended report

You can also request stats via management API, check the Queues methods. Here is an example of how to get the current ACD queue state:

GetACDState

GetACDState

How to implement a callback queue with ACD v1

Copy URL

You can implement queues with callback function for your customers. With this feature, a customer who waits in a queue can press a specific button and end the call but remain in the queue. When the customer reaches their turn, the scenario connects the customer to the agent via calling both sides.

Let us modify the code example from the first section:

Scenario code

Scenario code

This scenario processes incoming calls, but sometimes developers would like to put a call in a queue from a callback form. Let us do it via StartScenarios management API request and additional code in the scenario:

Putting a call in a queue

Putting a call in a queue

It is also possible to make requests to the session using media_session_access_url and get queue position updates to display it to the customer.

Frequently asked questions

Copy URL

Q: When a call arrives to the ACD v1 call center, only one agent receives it. How can I set it up so all the agents could see the call and the first agent that answers it, gets it?
A: When a call arrives, ACD v1 distributes the call to a specific agent based on the queue parameters and agents' load. If you want to distribute the calls manually between agents, you can avoid using ACD v1 and write your own scenario that distributes the calls. You can get the active agents list via Management API.

Q: I have an issue switching the queue to incoming calls, I cannot add agents to the queue. How do I solve it?
A: You can bind users to queue via the BindUserToQueue API request, or use a service account with the rights to manage an ACD v1 queue.