Serverless Webhooks with Azure Functions and C#
Serverless architectures allow developers to write code that runs in the cloud without managing servers. "Serverless" applications can be very efficient with compute resources (significantly reducing associated costs) by only running in response to events like API requests. Microsoft Azure's offering for serverless code is called Azure Functions. Let's look at a practical application of Azure Functions by writing C# code to handle Twilio webhooks for incoming SMS messages and voice phone calls.
Twilio can send your web application an HTTP request when certain events happen, such as an incoming text message to one of your Twilio phone numbers. These requests are called webhooks, or status callbacks. For more, check out our guide to Getting Started with Twilio Webhooks. Find other webhook pages, such as a security guide and an FAQ in the Webhooks section of the docs.
Create a New Azure Function app
To get started on the road to serverless bliss, you first need to create a new Function App in the Azure Portal. Do this by clicking New, searching for "Function App" and selecting "Function App" from the list:
After clicking on "Function App," click the "Create" button. Provide an app name and other parameters to your preferences:
Write a Function to Respond to SMS Messages
Create the Function
Bring up your new Function App in the Azure Portal. You should see the Quickstart page which will give you options for creating your first function. We want to use the "Webhook + API" scenario and choose C# as our language:
Click "Create this function" and you'll be presented with the function editor, where you can start cutting some code.
Install the Twilio Helper Library
When Twilio calls your webhook, it is expecting a response in TwiML. Our C# code will need to generate this TwiML, which is just standard XML. While we could create the XML in a string, the Twilio Helper Library provides classes to make it easy to build a valid TwiML response. Azure Functions allows installing NuGet packages and making them available to your functions. We need to create a project.json
file with the following content:
To create this file, click the button and then the button. Name the file project.json
. Paste the JSON into the code editor and Save the file.
Write the Message Handling Code
Now let's write the code that will handle the incoming text message. Switch back to your function code (click the run.csx
file) and paste the following C# code into the editor:
Twilio will send data about the incoming SMS as form parameters in the body of the POST request. This function has the code to parse out all of those parameters. You need only reference the name of the parameter you want such as formValues['Body']
for the body of the message or formValues['From']
for the phone number of the person sending the message.
The output of the function is a properly formatted XML response containing the TwiML built by the Twilio.TwiML.MessagingResponse
builder. This function simply echoes back whatever message was sent, but you can see where you you could put code to do any number of things such as call an external API or make use of other Azure resources.
Configure the Message Webhook
Now we need to configure our Twilio phone number to call our Azure Function whenever a new text message comes in. To find the URL for your function, look for the Function Url label directly above the code editor in the Azure Portal:
Copy this URL to the clipboard. Next, open the Twilio Console and find the phone number you want to use (or buy a new number). On the configuration page for the number, scroll down to "Messaging" and next to "A MESSAGE COMES IN," select "Webhook" and paste in the function URL. (Be sure "HTTP POST" is selected, as well.)
Test the Message Webhook Function
Now send a text message to your Twilio phone number. If you texted "Hello", then you should get a reply back saying "You said: Hello". If there are any problems, you can use the button in the Azure Function to see what error messages are happening on the server-side. To see errors on Twilio's side, use the Twilio Debugger.
If you'd like to simulate a request from Twilio, you can use the button. Provide url encoded form parameters in the "Request body" field and the click the "Run" button at the top of code editor.
Write a Function to Handle Phone Calls
Follow the same steps above to create your function and reference the Twilio Helper Library.
Write the Call Handling Code
Now let's write the code that will handle the incoming phone call. Switch back to your function code (click the run.csx
file) and paste the following C# code into the editor:
Twilio will send data about the incoming call as form parameters in the body of the POST request. This function has the code to parse out all of those parameters. You need only reference the name of the parameter you want such as formValues['From']
for the phone number of the person calling or formValues['CallSid']
for a unique identifier of the call.
The output of the function is a properly formatted XML response containing the TwiML built by the Twilio.TwiML.VoiceResponse
builder. This function simply tells the caller their phone number, but you can see where you you could put code to do any number of things such as call an external API or make use of other Azure resources.
Configure the Voice Webhook
Now we need to configure our Twilio phone number to call our Azure Function whenever a call comes in. To find the URL for your function, look for the Function Url label directly above the code editor in the Azure Portal:
Copy this URL to the clipboard. Next, open the Twilio Console and find the phone number you want to use (or buy a new number). On the configuration page for the number, scroll down to "Voice" and next to "A CALL COMES IN," select "Webhook" and paste in the function URL. (Be sure "HTTP POST" is selected, as well.)
Test the Voice Webhook Function
Now call your Twilio phone number. You should hear a voice saying "Your phone number is <123456>". If there are any problems, you can use the button in the Azure Function to see what error messages are happening on the server-side. To see errors on Twilio's side, use the Twilio Debugger.
If you'd like to simulate a request from Twilio, you can use the button. Provide url encoded form parameters in the "Request body" field and the click the "Run" button at the top of code editor.
What's Next?
The Azure Functions documentation contains all you need to take your functions to the next level. Be sure to also refer to our TwiML Reference for all that you can do with TwiML in your serverless webhooks.
Now, get out there and enjoy your new serverless life.
Need some help?
We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.