This guide will explain how to use Twilio's Queue feature to create a call queueing system. A Queue stores incoming calls in order. You can then connect the first call in the queue to another call easily. The complete code sample will show you how to accept an incoming call, place it into a queue and then connect a live agent to the first call in the queue.
For this demonstration we'll be using two Twilio phone numbers, so if you'd like to try the code out live, you'll need to buy two phone numbers. For more help getting setup with Voice be sure to read our Getting Started guide.
When our first number is called, Twilio will make a request to our server to place the caller in the Queue.
1const VoiceResponse = require('twilio').twiml.VoiceResponse;234const response = new VoiceResponse();5response.enqueue({6waitUrl: 'wait-music.xml'7}, 'support');89console.log(response.toString());
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Enqueue waitUrl="wait-music.xml">support</Enqueue>4</Response>
We start by creating a TwiML response that uses the Enqueue verb to create a new Queue and place the caller into it.
You can learn more about how to serve TwiML from your own application in our webhook guides. You can explore all the available TwiML functionality in our TwiML reference docs.
When our second number is called, Twilio will make a request to our server to connect the agent to the Queue.
1const VoiceResponse = require('twilio').twiml.VoiceResponse;234const response = new VoiceResponse();5const dial = response.dial();6dial.queue({7url: 'about_to_connect.xml'8}, 'support');910console.log(response.toString());
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Dial>4<Queue url="about_to_connect.xml">support</Queue>5</Dial>6</Response>
To connect to the first caller in the Queue all we do is Dial the Queue by name.
By default the call will end when the Agent or Caller hang up, but in most cases we'll want to connect to the next Caller automatically.
1// Download the Node helper library from twilio.com/docs/node/install2const VoiceResponse = require('twilio').twiml.VoiceResponse;3const twiml = new VoiceResponse();45twiml.say('You will now be connected to the first caller in the queue.');6const dial = twiml.dial();7dial.queue('Queue Demo');8twiml.redirect();910console.log(twiml.toString());
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Say>You will now be connected to the first caller in the queue.</Say>4<Dial>5<Queue>Queue Demo</Queue>6</Dial>7<Redirect></Redirect>8</Response>
An empty <Redirect>
verb will redirect the
caller to the beginning of the TwiML, which will then Dial and connect to the
next person in the Queue. As a final touch we add a <Say>
verb to tell the agent
that they are being connected to another caller.
With Twilio's TaskRouter you can implement very sophisticated call-center workflows like:
Hopefully this guide got you up and running with Twilio Queues. Email us and let us know what features of Queue you would like to know more about.