Twilio 7.2.3

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Twilio --version 7.2.3                
NuGet\Install-Package Twilio -Version 7.2.3                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Twilio" Version="7.2.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Twilio --version 7.2.3                
#r "nuget: Twilio, 7.2.3"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Twilio as a Cake Addin
#addin nuget:?package=Twilio&version=7.2.3

// Install Twilio as a Cake Tool
#tool nuget:?package=Twilio&version=7.2.3                

twilio-csharp

Test Quality Gate Status NuGet Learn with TwilioQuest

Twilio REST API and TwiML Libraries for .NET

Twilio provides a HTTP-based API for sending and receiving phone calls and text messages. Learn more on twilio.com.

More documentation for this library can be found here.

Versions

twilio-csharp uses a modified version of Semantic Versioning for all changes. See this document for details.

Migrate from earlier versions

See the migration guide here. Also, if you were using the Twilio.Mvc package, that has been replaced by the Twilio.AspNet.Mvc package which is compatible with this version of the library.

TLS 1.2 Requirements

New accounts and subaccounts are now required to use TLS 1.2 when accessing the REST API. "Upgrade Required" errors indicate that TLS 1.0/1.1 is being used. With .NET, you can enable TLS 1.2 using this setting:

System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

Supported .NET versions

This library supports .NET applications that utilize .NET6+.

Installation

The best and easiest way to add the Twilio libraries to your .NET project is to use the NuGet package manager.

With Visual Studio IDE

From within Visual Studio, you can use the NuGet GUI to search for and install the Twilio NuGet package. Or, as a shortcut, simply type the following command into the Package Manager Console:

Install-Package Twilio

With .NET Core Command Line Tools

If you are building with the .NET Core command line tools, then you can run the following command from within your project directory:

dotnet add package Twilio

Sample usage

The examples below show how to have your application initiate and outbound phone call and send an SMS message using the Twilio .NET helper library:

TwilioClient.Init("ACCOUNT_SID", "AUTH_TOKEN");

var call = CallResource.Create(
    new PhoneNumber("+11234567890"),
    from: new PhoneNumber("+10987654321"),
    url: new Uri("https://my.twiml.here")
);
Console.WriteLine(call.Sid);

var message = MessageResource.Create(
    new PhoneNumber("+11234567890"),
    from: new PhoneNumber("+10987654321"),
    body: "Hello World!"
);
Console.WriteLine(message.Sid);

Specify Region and/or Edge

To take advantage of Twilio's Global Infrastructure, specify the target Region and/or Edge for the client:

TwilioClient.SetRegion("au1");
TwilioClient.SetEdge("sydney");

This will result in the hostname transforming from api.twilio.com to api.sydney.au1.twilio.com.

Enable debug logging

There are two ways to enable debug logging in the default HTTP client. You can create an environment variable called TWILIO_LOG_LEVEL and set it to debug or you can set the LogLevel variable on the client as debug:

TwilioClient.SetLogLevel("debug");

Handle exceptions

For an example on how to handle exceptions in this helper library, please see the Twilio documentation.

Generate TwiML

To control phone calls, your application needs to output TwiML.

// TwiML classes can be created as standalone elements
var gather = new Gather(numDigits: 1, action: new Uri("hello-monkey-handle-key.cshtml"), method: HttpMethod.Post)
    .Say("To speak to a real monkey, press 1. Press 2 to record your own monkey howl. Press any other key to start over.");

// Attributes can be set directly on the object
gather.Timeout = 100;
gather.MaxSpeechTime = 200

// Arbitrary attributes can be set by calling set/getOption
var dial = new Dial().SetOption("myAttribute", 200)
                     .SetOption("newAttribute", false);

// Or can be created and attached to a response directly using helper methods
var response = new VoiceResponse()
    .Say("Hello Monkey")
    .Play(new Uri("http://demo.twilio.com/hellomonkey/monkey.mp3"))
    .Append(gather)
    .Append(dial);

// Serialize the TwiML objects to XML string
Console.WriteLine(response);

/*
<?xml version="1.0" encoding="utf-8"?>
<Response>
  <Say>Hello Monkey</Say>
  <Play>http://demo.twilio.com/hellomonkey/monkey.mp3</Play>
  <Gather numDigits="1" action="hello-monkey-handle-key.cshtml" method="POST" timeout="100" maxSpeechTime="200">
    <Say>To speak to a real monkey, press 1. Press 2 to record your own monkey howl. Press any other key to start over.</Say>
  </Gather>
  <Dial myAttribute="200" newAttribute="false"></Dial>
</Response>
*/

Use a custom HTTP Client

To use a custom HTTP client with this helper library, please see the advanced example of how to do so.

Docker Image

The Dockerfile present in this repository and its respective twilio/twilio-csharp Docker image are used by Twilio for testing purposes.

You could use the docker image for building and running tests:

docker build -t twiliobuild .

Bash:

docker run -it --rm -v $(pwd):/twilio twiliobuild
make test

Powershell:

docker run -it --rm -v ${PWD}:/twilio twiliobuild
make test

Get support

If you need help installing or using the library, please check the Twilio Support Help Center first, and file a support ticket if you don't find an answer to your question.

If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo!

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (182)

Showing the top 5 NuGet packages that depend on Twilio:

Package Downloads
Twilio.AspNet.Core

Twilio helper library for ASP.NET Core

iRely.Common

iRely.Common

Twilio.AspNet.Mvc

Twilio helper library for ASP.NET MVC on .NET Framework.

Microsoft.Azure.WebJobs.Extensions.Twilio

This package contains binding extensions for Twilio.

DTF.Services

Abstractions and implementations of DTF services for integration

GitHub repositories (27)

Showing the top 5 popular GitHub repositories that depend on Twilio:

Repository Stars
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
Ombi-app/Ombi
Want a Movie or TV Show on Plex/Emby/Jellyfin? Use Ombi!
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
phongnguyend/Practical.CleanArchitecture
Full-stack .Net 8 Clean Architecture (Microservices, Modular Monolith, Monolith), Blazor, Angular 18, React 18, Vue 3, BFF with YARP, Domain-Driven Design, CQRS, SOLID, Asp.Net Core Identity Custom Storage, OpenID Connect, Entity Framework Core, OpenTelemetry, SignalR, Hosted Services, Health Checks, Rate Limiting, Cloud Services (Azure, AWS, GCP).
ariacom/Seal-Report
Database Reporting Tool and Tasks (.Net)
Version Downloads Last updated
7.4.0 3,675 9/25/2024
7.3.1 18,775 9/18/2024
7.3.0 45,458 9/5/2024
7.2.3 63,550 8/26/2024
7.2.2 343,941 7/2/2024
7.2.1 30,516 6/27/2024
7.2.0 64,317 6/18/2024
7.1.1 113,841 6/6/2024
7.1.0 188,295 5/24/2024
7.0.5 429,569 4/18/2024
7.0.4 155,732 4/4/2024
7.0.3 41,484 4/1/2024
7.0.2 186,350 3/14/2024
7.0.1 33,510 3/12/2024 7.0.1 is deprecated.
7.0.0 99,117 2/27/2024 7.0.0 is deprecated.
7.0.0-rc.4 5,246 2/23/2024
7.0.0-rc.3 94 2/23/2024
7.0.0-rc.2 574 2/15/2024
7.0.0-rc.1 62,475 10/5/2023
6.18.0 286,905 2/9/2024
6.16.1 395,394 1/15/2024
6.15.2 501,590 12/5/2023
6.15.1 256,911 11/17/2023
6.15.0 195,361 11/8/2023
6.14.1 404,022 10/5/2023
6.14.0 168,600 9/21/2023
6.13.0 168,014 9/7/2023
6.11.0 380,756 8/10/2023
6.10.1 195,164 7/27/2023
6.10.0 197,255 7/13/2023
6.9.0 187,607 6/28/2023
6.8.0 207,587 6/15/2023
6.7.0 223,940 6/1/2023
6.6.1 189,413 5/18/2023
6.6.0 205,413 5/4/2023
6.5.0 307,749 4/20/2023
6.4.0 254,994 4/5/2023
6.3.0 387,852 3/23/2023
6.2.5 384,867 3/9/2023
6.2.4 1,125,585 2/22/2023
6.2.3 159,041 2/8/2023
6.2.2 302,637 1/25/2023
6.2.1 372,715 1/11/2023
6.2.0 327,973 12/14/2022
6.1.0 273,256 11/30/2022
6.0.1 520,609 11/16/2022
6.0.0-rc.3 819 11/10/2022
6.0.0-rc.2 1,207 10/31/2022
6.0.0-rc.1 1,536 10/20/2022
5.81.2 375,320 11/10/2022
5.81.1 181,498 10/31/2022
5.81.0 271,544 10/19/2022
5.80.1 412,917 10/5/2022
5.80.0 745,491 9/7/2022
5.79.0 241,477 8/24/2022
5.78.1 273,774 8/10/2022
5.78.0 495,276 7/21/2022
5.77.0 686,039 7/13/2022
5.76.0 466,993 6/29/2022
5.75.3 399,348 6/15/2022
5.75.2 231,154 6/1/2022
5.75.1 469,182 5/18/2022
5.75.0 378,756 5/4/2022
5.74.0 739,455 4/6/2022
5.73.0 692,493 3/23/2022
5.72.1 491,638 3/9/2022
5.72.0 396,677 2/23/2022
5.71.0 4,915,505 2/9/2022
5.70.1 582,565 1/26/2022
5.70.0 458,636 1/12/2022
5.69.0 696,051 12/15/2021
5.68.2 482,703 12/1/2021
5.68.1 712,620 11/17/2021
5.68.0 252,810 11/3/2021
5.67.0 291,279 10/18/2021
5.66.0 213,188 10/6/2021
5.65.3 336,796 9/22/2021
5.65.2 472,608 9/8/2021
5.65.0 595,088 8/11/2021
5.64.1 286,127 7/28/2021
5.64.0 295,455 7/14/2021
5.63.0 252,504 6/30/2021
5.62.0 313,764 6/16/2021
5.61.1 340,729 6/2/2021
5.61.0 182,696 5/19/2021
5.60.0 279,954 5/5/2021
5.59.0 208,646 4/21/2021
5.58.0 326,785 4/7/2021
5.57.0 533,425 3/24/2021
5.56.0 517,661 3/15/2021
5.55.0 356,453 2/24/2021
5.54.0 356,798 2/12/2021
5.53.1 523,535 1/27/2021
5.53.0 196,435 1/13/2021
5.52.1 762,998 12/16/2020
5.52.0 249,690 12/8/2020
5.51.0 153,473 12/2/2020
5.50.0 616,290 11/18/2020
5.49.0 332,499 11/5/2020
5.48.0 668,959 10/14/2020
5.47.2 465,669 9/28/2020
5.47.1 320,574 9/21/2020
5.47.0 64,870 9/16/2020
5.46.2 322,862 9/3/2020
5.46.1 11,809 9/2/2020
5.46.0 495,663 8/19/2020
5.45.2 327,030 8/5/2020
5.45.1 258,959 7/22/2020
5.45.0 959,352 7/8/2020
5.44.0 552,709 6/24/2020
5.43.0 337,887 6/10/2020
5.42.0 331,260 5/27/2020
5.41.1 428,205 5/20/2020
5.41.0 159,564 5/13/2020
5.40.0 301,594 4/29/2020
5.39.1 342,912 4/15/2020
5.39.0 429,356 4/1/2020
5.38.0 372,464 3/18/2020
5.37.6 407,210 3/4/2020
5.37.5 468,631 2/19/2020
5.37.4 340,073 2/5/2020
5.37.3 422,408 1/22/2020
5.37.2 1,252,733 1/8/2020
5.37.1 365,150 12/18/2019
5.37.0 106,177 12/12/2019
5.36.0 229,960 12/4/2019
5.35.1 370,352 11/13/2019
5.35.0 293,343 10/30/2019
5.34.0 147,231 10/16/2019
5.33.1 896,436 10/2/2019
5.33.0 369,968 9/18/2019
5.32.0 198,432 9/4/2019
5.31.4 256,004 8/21/2019
5.31.3 241,077 8/5/2019
5.31.2 103,688 7/24/2019
5.31.1 384,870 7/10/2019
5.31.0 234,686 6/26/2019
5.30.0 289,900 6/12/2019
5.29.1 212,395 5/29/2019
5.29.0 211,811 5/15/2019
5.28.4 176,911 5/1/2019
5.28.3 114,667 4/24/2019
5.28.2 134,476 4/12/2019
5.28.1 4,609 4/12/2019
5.28.0 1,141,016 3/28/2019
5.27.2 129,981 3/15/2019
5.27.1 730,843 3/7/2019
5.27.0 66,238 3/1/2019
5.26.1 171,693 2/16/2019
5.26.0 307,117 2/4/2019
5.25.1 635,665 1/11/2019
5.25.0 7,548 1/10/2019
5.24.1 297,528 1/2/2019
5.24.0 76,388 12/14/2018
5.23.0 206,928 11/30/2018
5.22.0 124,332 11/16/2018
5.21.0 169,564 10/28/2018
5.20.1 590,873 10/16/2018
5.20.0 18,794 10/15/2018
5.19.0 275,141 10/4/2018
5.18.0 29,919 10/2/2018
5.17.0 300,465 9/20/2018
5.16.4 131,242 9/7/2018
5.16.3 150,461 8/31/2018
5.16.2 98,964 8/23/2018
5.16.0 125,286 8/17/2018
5.15.1 81,201 8/9/2018
5.15.0 153,214 8/3/2018
5.14.1 109,016 7/27/2018
5.14.0 184,076 7/16/2018
5.13.8 46,651 7/11/2018
5.13.7 74,962 7/5/2018
5.13.6 34,321 6/29/2018
5.13.5 33,855 6/21/2018
5.13.4 41,673 6/15/2018
5.13.3 139,194 6/5/2018
5.13.2 72,477 5/25/2018
5.13.1 50,435 5/18/2018
5.13.0 329,018 5/11/2018
5.12.1 40,604 5/7/2018
5.12.0 43,070 4/27/2018
5.11.1 63,426 4/20/2018
5.11.0 30,166 4/13/2018
5.10.0 188,259 3/23/2018
5.9.8 90,142 3/10/2018
5.9.7 405,833 2/24/2018
5.9.6 97,338 2/10/2018
5.9.5 67,470 1/31/2018
5.9.4 66,203 1/22/2018
5.9.3 3,241 1/22/2018
5.9.2 304,910 12/16/2017
5.9.1 79,026 12/1/2017
5.9.0 287,407 11/17/2017
5.8.3 218,947 11/11/2017
5.8.2 123,269 11/3/2017
5.8.1 49,425 10/28/2017
5.8.0 85,264 10/20/2017
5.7.2 62,324 10/13/2017
5.7.1 34,642 10/6/2017
5.7.0 32,967 9/29/2017
5.6.5 90,461 9/16/2017
5.6.4 85,758 9/1/2017
5.6.3 264,383 8/25/2017
5.6.2 19,031 8/18/2017
5.6.1 30,519 8/11/2017
5.6.0 96,672 7/27/2017
5.5.3-alpha2 29,243 7/7/2017
5.5.3-alpha1 2,740 7/1/2017
5.5.2 71,195 7/1/2017
5.5.2-alpha1 3,520 6/16/2017
5.5.1 83,518 6/16/2017
5.5.1-alpha1 3,740 5/24/2017
5.5.0 146,271 5/24/2017
5.4.3-alpha1 2,522 5/22/2017
5.4.2 33,572 5/19/2017
5.4.2-alpha1 2,648 5/8/2017
5.4.1 115,000 5/8/2017
5.4.1-alpha1 4,651 4/27/2017
5.4.0 26,516 4/27/2017
5.4.0-alpha1 2,640 4/27/2017
5.3.1-alpha1 5,766 4/17/2017
5.3.0 57,026 4/17/2017
5.2.2-alpha1 2,615 4/13/2017
5.2.1 12,619 4/13/2017
5.2.1-alpha1 11,203 3/31/2017
5.2.0 41,878 3/31/2017
5.1.2-alpha1 2,987 3/21/2017
5.1.1 46,805 3/21/2017
5.1.1-alpha1 3,155 3/9/2017
5.1.0 71,233 3/9/2017
5.0.3-alpha1 2,802 2/24/2017
5.0.2 33,569 2/24/2017
5.0.2-alpha1 2,604 2/24/2017
5.0.1 8,927 2/24/2017
5.0.1-alpha1 2,773 2/22/2017
5.0.0 46,678 2/22/2017
5.0.0-rca4 23,853 2/14/2017
5.0.0-rca3 2,514 2/9/2017
5.0.0-rca2 6,781 12/8/2016
5.0.0-rca1 3,630 11/9/2016
5.0.0-rc9 2,698 11/3/2016
5.0.0-rc8 4,109 9/19/2016
5.0.0-rc7 2,549 9/15/2016
5.0.0-rc6 3,464 9/1/2016
5.0.0-rc4 4,674 7/8/2016
5.0.0-rc2 20,829 6/2/2016
5.0.0-rc10 2,611 11/4/2016
5.0.0-rc1 2,378 6/1/2016
5.0.0-alpha1 2,376 2/22/2017
4.7.2 3,337,643 5/23/2016
4.7.1 286,957 4/5/2016
4.7.0 109,239 3/16/2016
4.5.0 389,432 2/5/2016
4.4.1 307,828 11/26/2015
4.4.0 23,789 11/12/2015
4.4.0-edge 2,459 11/12/2015
4.3.0 18,190 11/11/2015
4.2.1 60,602 10/30/2015
4.2.0 3,062 10/30/2015
4.1.0 190,024 9/24/2015
4.0.51 159,200 8/24/2015
4.0.5 209,852 8/20/2015
4.0.4 33,805 8/12/2015
4.0.3 224,629 5/21/2015
4.0.2 4,385 5/19/2015
4.0.1 6,389 5/14/2015
4.0.0 38,079 4/28/2015
3.8.45-beta 3,287 3/19/2015
3.8.44-beta 2,385 3/19/2015
3.8.40-beta 2,476 3/6/2015
3.8.30-beta 2,450 3/5/2015
3.8.29-beta 2,405 3/5/2015
3.8.28-beta 2,318 3/5/2015
3.8.26-beta 2,411 3/5/2015
3.8.18-beta 3,688 12/19/2014
3.7.55-alpha 7,736 6/4/2014
3.7.54-alpha 2,462 6/4/2014
3.7.53-alpha 2,488 6/4/2014
3.7.51-alpha 2,468 6/4/2014
3.7.50-alpha 2,538 6/4/2014
3.7.48-alpha 2,554 6/4/2014
3.7.46-alpha 2,448 6/4/2014
3.7.45-alpha 2,494 6/4/2014
3.7.44-alpha 2,511 6/4/2014
3.7.43-alpha 2,528 5/31/2014
3.7.40-alpha 2,481 5/31/2014
3.7.39-alpha 2,471 5/31/2014
3.7.38-alpha 2,472 5/31/2014
3.7.37-alpha 2,456 5/30/2014
3.7.35-alpha 2,468 5/30/2014
3.6.29 54,422 4/7/2015
3.6.28 3,261 4/7/2015
3.6.27 81,546 2/26/2015
3.6.26 36,012 2/19/2015
3.6.25 127,789 12/7/2014
3.6.24 23,491 11/14/2014
3.6.23 8,296 11/5/2014
3.6.22 3,472 11/5/2014
3.6.20 38,724 10/10/2014
3.6.19 3,030 10/10/2014
3.6.18 70,517 9/29/2014
3.6.17 26,656 8/28/2014
3.6.16 189,528 5/29/2014
3.6.15 3,949 5/27/2014
3.6.11 94,849 1/25/2014
3.6.10 25,183 11/20/2013
3.6.9 31,916 11/4/2013
3.6.8 3,120 11/4/2013
3.6.7 3,106 11/4/2013
3.6.6 3,080 11/4/2013
3.6.5 21,953 10/21/2013
3.6.4 7,565 10/7/2013
3.6.3 3,909 10/3/2013
3.6.2 5,510 9/30/2013
3.6.1 40,074 9/18/2013
3.5.17 77,200 7/31/2013
3.5.16 5,119 7/20/2013
3.5.15 7,873 7/13/2013
3.5.14 6,610 6/19/2013
3.5.12 10,645 4/10/2013
3.5.11 3,137 4/9/2013
3.5.10 4,173 4/5/2013
3.5.9 3,494 4/4/2013
3.5.8 4,241 3/18/2013
3.5.6 15,183 12/17/2012
3.5.5 10,877 10/25/2012
3.5.4 3,263 10/24/2012
3.5.3 3,870 10/17/2012
3.5.2 3,170 10/17/2012
3.5.1 5,440 8/31/2012
3.5.0 3,989 8/20/2012
3.4.5 8,158 7/12/2012
3.4.4 3,180 7/12/2012
3.4.3 3,308 7/9/2012
3.4.2 18,508 4/18/2012
3.4.1 49,915 4/18/2012
3.4.0 9,010 3/21/2012
3.3.7 3,939 2/15/2012
3.3.6 3,742 2/15/2012
3.3.5 3,176 2/15/2012
3.3.4 3,299 2/7/2012
3.3.3 3,167 2/6/2012
3.3.2 4,404 11/18/2011
3.3.1 3,288 11/18/2011
3.2.3 3,450 10/19/2011
3.2.2 3,365 10/11/2011
3.2.1 3,439 9/28/2011
3.2.0 3,443 9/21/2011
3.1.4 3,416 8/26/2011
3.1.3 3,357 8/9/2011
3.1.0 5,084 7/26/2011
3.0.1 3,767 7/20/2011
3.0.0 72,449 7/17/2011
2.0.2 44,475 1/31/2011