Create Tasks from Phone Calls using TwiML: Dequeue a Call to a Worker
In the previous step we created a Task from an incoming phone call using <Enqueue workflowSid="WW0123401234..">. In this step we will create another call and dequeue it to an eligible Worker when one becomes available.
Back in Part 1 of the Quickstart, we created a Worker named Alice that is capable of handling both English and Spanish inquiries. With your Workspace open in the TaskRouter web portal, click 'Workers' and click to edit the details of our Worker Alice. Ensure that Alice is set to a non-available Activity state such as 'Offline'. Next, edit Alice's JSON attributes and add a contact_uri field. Replace the dummy 555 number below with your own phone number.
Alice's modified JSON attributes:
{"languages": ["en", "es"], "contact_uri": "+15555555555"}
Or, as displayed in the web portal:
In this step, we again use <Enqueue> to create a Task from an incoming phone call. When an eligible Worker (in this case Alice) becomes available, TaskRouter will make a request to our Assignment Callback URL. This time, we will respond with a special 'dequeue' instruction; this tells Twilio to call Alice at her 'contact_uri' and bridge to the caller.
For this part of the Quickstart, although not totally necessary it will be useful to have two phones available - one to call your Twilio number, and one to receive a call as Alice. Experienced Twilio users might consider using the Twilio Dev Phone as one of the endpoints.
Before we add the 'dequeue' assignment instruction we need to create a new Activity in our TaskRouter Workspace. One of the nice things about integrating TaskRouter with TwiML is that our Worker will automatically transition through various Activities as the call is assigned, answered and even hung up. We need an Activity for our Worker to transition to when the call ends.
With your Workspace open in the TaskRouter web portal, click 'Activities' and then 'Create Activity'. Give the new Activity a name of 'WrapUp' and a value of 'unavailable'. Once you've saved it, make a note of the Activity Sid:

To return the 'dequeue' assignment instruction, modify Program.cs assignment_callback endpoint to now issue a dequeue instruction, substituting your new WrapUp ActivitySid between the curly braces:

1using System;2using System.Net;3using SimpleWebServer;4using Twilio;5using Twilio.Rest.Taskrouter.V1.Workspace;6using Twilio.Rest.Taskrouter.V1.Workspace.Task;7using Twilio.TwiML;89namespace taskroutercsharp10{11class MainClass12{13// Find your Account SID at twilio.com/console14// Provision API Keys at twilio.com/console/runtime/api-keys15const string AccountSid = "{{ account_sid }}";16const string ApiKey = "{{ api_key }}";17const string ApiSecret = "{{ api_secret }}";18const string WorkspaceSid = "{{ workspace_sid }}";19const string WorkflowSid = "{{ workflow_sid }}";2021public static void Main (string[] args)22{23// Initialize the Twilio client24TwilioClient.Init(ApiKey, ApiSecret, AccountSid);2526WebServer ws = new WebServer (SendResponse, "http://localhost:8080/");27ws.Run ();28Console.WriteLine ("A simple webserver. Press a key to quit.");29Console.ReadKey ();30ws.Stop ();31}3233public static HttpListenerResponse SendResponse(HttpListenerContext ctx)34{35HttpListenerRequest request = ctx.Request;36HttpListenerResponse response = ctx.Response;3738String endpoint = request.RawUrl;3940if (endpoint.EndsWith("assignment_callback")) {41response.StatusCode = (int) HttpStatusCode.OK;42response.ContentType = "application/json";43response.StatusDescription = "{\"instruction\":\"dequeue\", \"from\":\"+15556667777\", \"post_work_activity_sid\":\"WA0123401234...\"}";44return response;45} else if (endpoint.EndsWith ("create_task")) {46response.StatusCode = (int)HttpStatusCode.OK;47response.ContentType = "application/json";48TaskResource task = TaskResource.Create(49WorkspaceSid,50attributes: "{\"selected_language\":\"es\"}",51workflowSid: WorkflowSid);5253response.StatusDescription = task.Attributes;54return response;55} else if (endpoint.EndsWith ("accept_reservation")) {56response.StatusCode = (int)HttpStatusCode.OK;57response.ContentType = "application/json";58var taskSid = request.QueryString ["TaskSid"];59var reservationSid = request.QueryString ["ReservationSid"];60ReservationResource reservation = ReservationResource.Update(61WorkspaceSid,62taskSid,63reservationSid,64ReservationResource.StatusEnum.Accepted);6566response.StatusDescription = "{\"reservation_status\":\"" + reservation.ReservationStatus + "\"}";67return response;68} else if (endpoint.EndsWith ("incoming_call")) {69response.StatusCode = (int)HttpStatusCode.OK;70response.ContentType = "application/xml";71var twiml = new VoiceResponse();72twiml.Gather(new Gather(numDigits: 1, action: "enqueue_call")73.Say("Para Espanol oprima el uno.", language: "es")74.Say("For English, please hold or press two.", language: "en"));7576response.StatusDescription = twiml.ToString();77return response;78} else if (endpoint.Contains("enqueue_call")) {79response.StatusCode = (int)HttpStatusCode.OK;80response.ContentType = "application/xml";8182int digitPressed = 0;83var language = "";84var digitsQuery = request.QueryString["Digits"];85if(digitsQuery != null) {86try87{88digitPressed = Int32.Parse(request.QueryString ["Digits"]);89} catch (FormatException e)90{91Console.WriteLine(e.Message);92}93}9495if (digitPressed == 1) {96language = "es";97} else {98language = "en";99}100101var twiml = new VoiceResponse();102twiml.Enqueue(103"{\"selected_language\":" + language + "\"}",104workflowSid: WorkflowSid);105106response.StatusDescription = twiml.ToString();107return response;108}109response.StatusCode = (int) HttpStatusCode.OK;110return response;111}112}113}
This returns a very simple JSON object from the Assignment Callback URL:
{"instruction":"dequeue", "from": "+15556667777", "post_work_activity_sid": "WA01234012340123401234"}
The JSON instructs Twilio to dequeue the waiting call and, because we don't include an explicit "to" field in our JSON, connect it to our Worker at their contact_uri. This is convenient default behavior provided by TaskRouter.
In the next step, we test our incoming call flow from end-to-end.