Twilio 7.2.2

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Twilio --version 7.2.2
NuGet\Install-Package Twilio -Version 7.2.2
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.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Twilio --version 7.2.2
#r "nuget: Twilio, 7.2.2"
#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.2

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

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 (176)

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 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package contains binding extensions for Twilio.

DTF.Services

Abstractions and implementations of DTF services for integration

GitHub repositories (25)

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, Selenium, SignalR, Hosted Services, Health Checks, Rate Limiting, Cloud Services (Azure, AWS, Google)...
ariacom/Seal-Report
Database Reporting Tool and Tasks (.Net)
Version Downloads Last updated
7.2.2 3,086 7/2/2024
7.2.1 7,700 6/27/2024
7.2.0 24,115 6/18/2024
7.1.1 46,858 6/6/2024
7.1.0 72,643 5/24/2024
7.0.5 253,349 4/18/2024
7.0.4 97,767 4/4/2024
7.0.3 27,860 4/1/2024
7.0.2 145,111 3/14/2024
7.0.1 21,780 3/12/2024
7.0.0 78,981 2/27/2024
7.0.0-rc.4 3,439 2/23/2024
7.0.0-rc.3 70 2/23/2024
7.0.0-rc.2 413 2/15/2024
7.0.0-rc.1 47,425 10/5/2023
6.18.0 214,112 2/9/2024
6.16.1 301,141 1/15/2024
6.15.2 415,518 12/5/2023
6.15.1 206,768 11/17/2023
6.15.0 162,048 11/8/2023
6.14.1 348,511 10/5/2023
6.14.0 146,620 9/21/2023
6.13.0 150,959 9/7/2023
6.11.0 338,593 8/10/2023
6.10.1 175,906 7/27/2023
6.10.0 174,523 7/13/2023
6.9.0 174,169 6/28/2023
6.8.0 182,694 6/15/2023
6.7.0 202,095 6/1/2023
6.6.1 169,591 5/18/2023
6.6.0 180,820 5/4/2023
6.5.0 282,053 4/20/2023
6.4.0 232,565 4/5/2023
6.3.0 356,758 3/23/2023
6.2.5 340,959 3/9/2023
6.2.4 891,122 2/22/2023
6.2.3 149,786 2/8/2023
6.2.2 274,611 1/25/2023
6.2.1 348,367 1/11/2023
6.2.0 299,927 12/14/2022
6.1.0 252,028 11/30/2022
6.0.1 471,643 11/16/2022
6.0.0-rc.3 778 11/10/2022
6.0.0-rc.2 1,165 10/31/2022
6.0.0-rc.1 1,402 10/20/2022
5.81.2 312,801 11/10/2022
5.81.1 171,107 10/31/2022
5.81.0 244,658 10/19/2022
5.80.1 384,801 10/5/2022
5.80.0 684,904 9/7/2022
5.79.0 227,832 8/24/2022
5.78.1 260,253 8/10/2022
5.78.0 459,756 7/21/2022
5.77.0 618,189 7/13/2022
5.76.0 426,921 6/29/2022
5.75.3 367,445 6/15/2022
5.75.2 219,021 6/1/2022
5.75.1 440,608 5/18/2022
5.75.0 358,930 5/4/2022
5.74.0 684,001 4/6/2022
5.73.0 646,859 3/23/2022
5.72.1 471,935 3/9/2022
5.72.0 366,483 2/23/2022
5.71.0 4,301,053 2/9/2022
5.70.1 541,189 1/26/2022
5.70.0 440,610 1/12/2022
5.69.0 651,727 12/15/2021
5.68.2 448,442 12/1/2021
5.68.1 680,370 11/17/2021
5.68.0 247,373 11/3/2021
5.67.0 280,002 10/18/2021
5.66.0 202,300 10/6/2021
5.65.3 319,048 9/22/2021
5.65.2 458,065 9/8/2021
5.65.0 562,162 8/11/2021
5.64.1 271,643 7/28/2021
5.64.0 281,175 7/14/2021
5.63.0 243,177 6/30/2021
5.62.0 301,911 6/16/2021
5.61.1 329,932 6/2/2021
5.61.0 179,257 5/19/2021
5.60.0 267,918 5/5/2021
5.59.0 204,199 4/21/2021
5.58.0 310,829 4/7/2021
5.57.0 512,591 3/24/2021
5.56.0 509,425 3/15/2021
5.55.0 343,638 2/24/2021
5.54.0 350,112 2/12/2021
5.53.1 502,942 1/27/2021
5.53.0 189,918 1/13/2021
5.52.1 727,239 12/16/2020
5.52.0 237,940 12/8/2020
5.51.0 147,358 12/2/2020
5.50.0 600,440 11/18/2020
5.49.0 322,576 11/5/2020
5.48.0 611,080 10/14/2020
5.47.2 438,958 9/28/2020
5.47.1 309,488 9/21/2020
5.47.0 63,101 9/16/2020
5.46.2 316,156 9/3/2020
5.46.1 11,751 9/2/2020
5.46.0 482,790 8/19/2020
5.45.2 319,341 8/5/2020
5.45.1 250,842 7/22/2020
5.45.0 861,209 7/8/2020
5.44.0 541,364 6/24/2020
5.43.0 320,764 6/10/2020
5.42.0 321,777 5/27/2020
5.41.1 401,193 5/20/2020
5.41.0 157,259 5/13/2020
5.40.0 293,554 4/29/2020
5.39.1 334,061 4/15/2020
5.39.0 399,304 4/1/2020
5.38.0 361,396 3/18/2020
5.37.6 397,612 3/4/2020
5.37.5 454,935 2/19/2020
5.37.4 334,989 2/5/2020
5.37.3 415,387 1/22/2020
5.37.2 1,219,267 1/8/2020
5.37.1 357,533 12/18/2019
5.37.0 104,375 12/12/2019
5.36.0 220,311 12/4/2019
5.35.1 351,630 11/13/2019
5.35.0 286,050 10/30/2019
5.34.0 143,083 10/16/2019
5.33.1 867,355 10/2/2019
5.33.0 339,384 9/18/2019
5.32.0 187,423 9/4/2019
5.31.4 250,225 8/21/2019
5.31.3 236,359 8/5/2019
5.31.2 99,956 7/24/2019
5.31.1 372,445 7/10/2019
5.31.0 230,234 6/26/2019
5.30.0 281,958 6/12/2019
5.29.1 205,707 5/29/2019
5.29.0 207,127 5/15/2019
5.28.4 169,734 5/1/2019
5.28.3 112,497 4/24/2019
5.28.2 131,974 4/12/2019
5.28.1 4,543 4/12/2019
5.28.0 1,002,679 3/28/2019
5.27.2 127,587 3/15/2019
5.27.1 723,932 3/7/2019
5.27.0 60,973 3/1/2019
5.26.1 169,579 2/16/2019
5.26.0 298,859 2/4/2019
5.25.1 623,814 1/11/2019
5.25.0 6,905 1/10/2019
5.24.1 290,455 1/2/2019
5.24.0 75,659 12/14/2018
5.23.0 201,119 11/30/2018
5.22.0 123,044 11/16/2018
5.21.0 166,696 10/28/2018
5.20.1 580,984 10/16/2018
5.20.0 18,612 10/15/2018
5.19.0 250,629 10/4/2018
5.18.0 28,309 10/2/2018
5.17.0 290,696 9/20/2018
5.16.4 129,009 9/7/2018
5.16.3 143,166 8/31/2018
5.16.2 95,549 8/23/2018
5.16.0 119,100 8/17/2018
5.15.1 80,186 8/9/2018
5.15.0 147,792 8/3/2018
5.14.1 108,103 7/27/2018
5.14.0 182,541 7/16/2018
5.13.8 45,632 7/11/2018
5.13.7 74,832 7/5/2018
5.13.6 33,926 6/29/2018
5.13.5 32,997 6/21/2018
5.13.4 40,949 6/15/2018
5.13.3 137,350 6/5/2018
5.13.2 71,894 5/25/2018
5.13.1 49,299 5/18/2018
5.13.0 262,870 5/11/2018
5.12.1 40,483 5/7/2018
5.12.0 42,781 4/27/2018
5.11.1 62,820 4/20/2018
5.11.0 29,841 4/13/2018
5.10.0 185,713 3/23/2018
5.9.8 88,302 3/10/2018
5.9.7 397,642 2/24/2018
5.9.6 95,739 2/10/2018
5.9.5 66,547 1/31/2018
5.9.4 65,284 1/22/2018
5.9.3 3,201 1/22/2018
5.9.2 298,460 12/16/2017
5.9.1 78,599 12/1/2017
5.9.0 280,109 11/17/2017
5.8.3 210,449 11/11/2017
5.8.2 120,813 11/3/2017
5.8.1 47,832 10/28/2017
5.8.0 83,736 10/20/2017
5.7.2 61,965 10/13/2017
5.7.1 34,533 10/6/2017
5.7.0 30,625 9/29/2017
5.6.5 88,141 9/16/2017
5.6.4 81,858 9/1/2017
5.6.3 260,019 8/25/2017
5.6.2 18,839 8/18/2017
5.6.1 30,287 8/11/2017
5.6.0 95,525 7/27/2017
5.5.3-alpha2 28,678 7/7/2017
5.5.3-alpha1 2,643 7/1/2017
5.5.2 70,402 7/1/2017
5.5.2-alpha1 3,480 6/16/2017
5.5.1 80,873 6/16/2017
5.5.1-alpha1 3,697 5/24/2017
5.5.0 145,201 5/24/2017
5.4.3-alpha1 2,486 5/22/2017
5.4.2 32,769 5/19/2017
5.4.2-alpha1 2,607 5/8/2017
5.4.1 110,765 5/8/2017
5.4.1-alpha1 4,584 4/27/2017
5.4.0 26,310 4/27/2017
5.4.0-alpha1 2,591 4/27/2017
5.3.1-alpha1 5,719 4/17/2017
5.3.0 54,302 4/17/2017
5.2.2-alpha1 2,570 4/13/2017
5.2.1 12,399 4/13/2017
5.2.1-alpha1 10,801 3/31/2017
5.2.0 41,343 3/31/2017
5.1.2-alpha1 2,951 3/21/2017
5.1.1 46,582 3/21/2017
5.1.1-alpha1 3,110 3/9/2017
5.1.0 69,035 3/9/2017
5.0.3-alpha1 2,763 2/24/2017
5.0.2 32,768 2/24/2017
5.0.2-alpha1 2,564 2/24/2017
5.0.1 8,791 2/24/2017
5.0.1-alpha1 2,737 2/22/2017
5.0.0 45,422 2/22/2017
5.0.0-rca4 21,714 2/14/2017
5.0.0-rca3 2,473 2/9/2017
5.0.0-rca2 6,736 12/8/2016
5.0.0-rca1 3,577 11/9/2016
5.0.0-rc9 2,662 11/3/2016
5.0.0-rc8 4,060 9/19/2016
5.0.0-rc7 2,508 9/15/2016
5.0.0-rc6 3,423 9/1/2016
5.0.0-rc4 4,618 7/8/2016
5.0.0-rc2 20,792 6/2/2016
5.0.0-rc10 2,574 11/4/2016
5.0.0-rc1 2,308 6/1/2016
5.0.0-alpha1 2,327 2/22/2017
4.7.2 3,284,978 5/23/2016
4.7.1 274,996 4/5/2016
4.7.0 107,478 3/16/2016
4.5.0 385,676 2/5/2016
4.4.1 303,415 11/26/2015
4.4.0 23,478 11/12/2015
4.4.0-edge 2,415 11/12/2015
4.3.0 17,706 11/11/2015
4.2.1 59,407 10/30/2015
4.2.0 3,018 10/30/2015
4.1.0 186,865 9/24/2015
4.0.51 157,489 8/24/2015
4.0.5 200,283 8/20/2015
4.0.4 33,757 8/12/2015
4.0.3 218,859 5/21/2015
4.0.2 4,324 5/19/2015
4.0.1 6,175 5/14/2015
4.0.0 36,980 4/28/2015
3.8.45-beta 3,076 3/19/2015
3.8.44-beta 2,350 3/19/2015
3.8.40-beta 2,434 3/6/2015
3.8.30-beta 2,420 3/5/2015
3.8.29-beta 2,374 3/5/2015
3.8.28-beta 2,289 3/5/2015
3.8.26-beta 2,383 3/5/2015
3.8.18-beta 3,644 12/19/2014
3.7.55-alpha 7,698 6/4/2014
3.7.54-alpha 2,432 6/4/2014
3.7.53-alpha 2,454 6/4/2014
3.7.51-alpha 2,440 6/4/2014
3.7.50-alpha 2,508 6/4/2014
3.7.48-alpha 2,524 6/4/2014
3.7.46-alpha 2,418 6/4/2014
3.7.45-alpha 2,466 6/4/2014
3.7.44-alpha 2,478 6/4/2014
3.7.43-alpha 2,502 5/31/2014
3.7.40-alpha 2,447 5/31/2014
3.7.39-alpha 2,441 5/31/2014
3.7.38-alpha 2,430 5/31/2014
3.7.37-alpha 2,423 5/30/2014
3.7.35-alpha 2,430 5/30/2014
3.6.29 52,391 4/7/2015
3.6.28 3,216 4/7/2015
3.6.27 80,286 2/26/2015
3.6.26 35,518 2/19/2015
3.6.25 120,033 12/7/2014
3.6.24 23,237 11/14/2014
3.6.23 8,247 11/5/2014
3.6.22 3,440 11/5/2014
3.6.20 38,437 10/10/2014
3.6.19 2,990 10/10/2014
3.6.18 69,973 9/29/2014
3.6.17 26,267 8/28/2014
3.6.16 177,691 5/29/2014
3.6.15 3,879 5/27/2014
3.6.11 93,687 1/25/2014
3.6.10 24,890 11/20/2013
3.6.9 31,120 11/4/2013
3.6.8 3,082 11/4/2013
3.6.7 3,057 11/4/2013
3.6.6 3,033 11/4/2013
3.6.5 21,914 10/21/2013
3.6.4 7,530 10/7/2013
3.6.3 3,859 10/3/2013
3.6.2 5,292 9/30/2013
3.6.1 40,004 9/18/2013
3.5.17 76,977 7/31/2013
3.5.16 5,073 7/20/2013
3.5.15 7,829 7/13/2013
3.5.14 6,524 6/19/2013
3.5.12 10,497 4/10/2013
3.5.11 3,099 4/9/2013
3.5.10 4,127 4/5/2013
3.5.9 3,418 4/4/2013
3.5.8 4,183 3/18/2013
3.5.6 14,915 12/17/2012
3.5.5 10,357 10/25/2012
3.5.4 3,222 10/24/2012
3.5.3 3,728 10/17/2012
3.5.2 3,126 10/17/2012
3.5.1 5,401 8/31/2012
3.5.0 3,951 8/20/2012
3.4.5 7,931 7/12/2012
3.4.4 3,141 7/12/2012
3.4.3 3,268 7/9/2012
3.4.2 18,453 4/18/2012
3.4.1 47,424 4/18/2012
3.4.0 8,969 3/21/2012
3.3.7 3,898 2/15/2012
3.3.6 3,701 2/15/2012
3.3.5 3,136 2/15/2012
3.3.4 3,263 2/7/2012
3.3.3 3,104 2/6/2012
3.3.2 4,362 11/18/2011
3.3.1 3,250 11/18/2011
3.2.3 3,418 10/19/2011
3.2.2 3,326 10/11/2011
3.2.1 3,401 9/28/2011
3.2.0 3,406 9/21/2011
3.1.4 3,377 8/26/2011
3.1.3 3,321 8/9/2011
3.1.0 5,020 7/26/2011
3.0.1 3,723 7/20/2011
3.0.0 71,854 7/17/2011
2.0.2 37,131 1/31/2011