Recall the TaskRouter Task lifecycle:
Task Created → eligible Worker becomes available → Worker reserved → Reservation accepted → Task assigned to Worker.
Before we create our first Task, make sure that our Worker Alice is in a non-available Activity state. Bob's Activity state won't matter right now, as we will create a Spanish language Task that he is not eligible to handle.
With your Workspace open in the TaskRouter web portal, click 'Workers' then click to edit Alice and set her Activity to 'Offline'. Your Workers should look like this:
To simulate reality, we'll create a Task using the REST API rather than the web portal. We'll add on to our Program.cs
to create a task with our web server. Replace the with your Twilio AccountSid, Twilio AuthToken, WorkspaceSid, and WorkflowSid.
Download and extract Twilio's C# helper library. Install the latest jar with dependencies into your web application library directory (for Tomcat this is taskrouter/WEB-INF/lib
).
1using System;2using System.Net;3using SimpleWebServer;4using Twilio;5using Twilio.Rest.Taskrouter.V1.Workspace.Task;67namespace taskroutercsharp8{9class MainClass10{11// Find your Account Sid and Auth Token at twilio.com/user/account12const string AccountSid = "{{ account_sid }}";13const string AuthToken = "{{ auth_token }}";14const string WorkspaceSid = "{{ workspace_sid }}";15const string WorkflowSid = "{{ workflow_sid }}";1617public static void Main (string[] args)18{19TwilioClient.Init(AccountSid, AuthToken);2021WebServer ws = new WebServer (SendResponse, "http://localhost:8080/");22ws.Run ();23Console.WriteLine ("A simple webserver. Press a key to quit.");24Console.ReadKey ();25ws.Stop ();26}2728public static HttpListenerResponse SendResponse(HttpListenerContext ctx)29{30HttpListenerRequest request = ctx.Request;31HttpListenerResponse response = ctx.Response;3233String endpoint = request.RawUrl;3435if (endpoint.EndsWith("assignment_callback")) {36response.StatusCode = (int) HttpStatusCode.OK;37response.ContentType = "application/json";38response.StatusDescription = "{}";39return response;40} else if (endpoint.EndsWith ("create_task")) {41response.StatusCode = (int)HttpStatusCode.OK;42response.ContentType = "application/json";43var task = TaskResource.Create(44WorkspaceSid, attributes: "{\"selected_language\":\"es\"}", workflowSid: WorkflowSid);45response.StatusDescription = task.Attributes;46return response;47}48response.StatusCode = (int) HttpStatusCode.OK;49return response;50}51}52}
Alternatively, we can also create a Task using the command line utility curl, which should exist on any Mac or Linux workstation. Again, remember to replace the with your matching credentials and Sids, then execute the following command at your terminal:
1curl https://taskrouter.twilio.com/v1/Workspaces/{WorkspaceSid}/Tasks \2--data-urlencode Attributes='{"selected_language": "es"}' \3-d WorkflowSid={WorkflowSid} \4-u {AccountSid}:{AuthToken}
You can find your Twilio AccountSid and AuthToken on the TaskRouter Getting Started page by clicking 'show API credentials'.
If you don't have curl, you can run this request using an HTTP test tool like Insomnia or using the Task creation dialog in the TaskRouter web portal: with your Workspace open, click 'Tasks' then 'Create Task'.
To see our newly created Task in the TaskRouter web portal, with your Workspace open, click 'Tasks' in the main navigation. Notice that the Task has been added to the "Customer Care Requests - Spanish" Task Queue based on the Attributes we provided in the curl request. The Assignment Status is 'pending' because there is no available Worker that matches the Task Queue:
Look again at the TaskRouter Task lifecycle:
Task Created → eligible Worker becomes available → Worker reserved → Reservation accepted → Task assigned to Worker.
The first stage - 'Task Created' - is complete. To trigger an automatic Task Reservation, the next step is to bring en eligible Worker (in this case Alice) online.
With your Workspace open in the TaskRouter web portal, click 'Workers', then click to edit Alice and set her Activity to 'Idle':
When you hit save, Twilio will create a Reservation between Alice and our Task and you will receive a Webhook request at the Assignment Callback URL that we set up in the previous step. If you're using ngrok, open http://localhost:4040
in your web browser to see a detailed log of the request that Twilio made to your server, including all the parameters that your server might use to determine whether to accept a Reservation:
We're now one step further along the Task Reservation lifecycle:
Task Created → eligible Worker becomes available → Worker reserved → Reservation accepted → Task assigned to Worker.
Time to accept the Reservation.