Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

REST API: Applications


An Application Resource (also referred to as a "TwiML Application" or "TwiML App") represents a collection of endpoints that return TwiML instructions to Twilio. TwiML Applications are most commonly used for the Voice SDKs to handle outbound calls, but can also be used to configure multiple phone numbers with the same set of TwiML endpoints.

The Applications list resource represents the set of an account's Twilio applications. You can POST to the list resource to create a new application. Note that accounts can contain at most 1000 applications.

Applications are useful for encapsulating configuration information that you need to distribute across multiple phone numbers. You can assign an ApplicationSid to an IncomingPhoneNumber to tell Twilio to use the application's URLs instead of the ones set directly on the IncomingPhoneNumber. So if you create an application with its VoiceUrl set to http://myapp.com/answer(link takes you to an external page), you can assign that application to all of your phone numbers and Twilio will make a request to that URL whenever a call comes in.


Application Properties

application-properties page anchor
Property nameTypePIIDescription
account_sidSID<AC>
Not PII

The SID of the Account that created the Application resource.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

api_versionstring

The API version used to start a new TwiML session.


date_createdstring<date-time-rfc-2822>

The date and time in GMT that the resource was created specified in RFC 2822(link takes you to an external page) format.


date_updatedstring<date-time-rfc-2822>

The date and time in GMT that the resource was last updated specified in RFC 2822(link takes you to an external page) format.


friendly_namestring

The string that you assigned to describe the resource.


message_status_callbackstring<uri>

The URL we call using a POST method to send message status information to your application.


sidSID<AP>

The unique string that that we created to identify the Application resource.

Pattern: ^AP[0-9a-fA-F]{32}$Min length: 34Max length: 34

sms_fallback_methodenum<http-method>

The HTTP method we use to call sms_fallback_url. Can be: GET or POST.

Possible values:
GETPOST

sms_fallback_urlstring<uri>

The URL that we call when an error occurs while retrieving or executing the TwiML from sms_url.


sms_methodenum<http-method>

The HTTP method we use to call sms_url. Can be: GET or POST.

Possible values:
GETPOST

sms_status_callbackstring<uri>

The URL we call using a POST method to send status information to your application about SMS messages that refer to the application.


sms_urlstring<uri>

The URL we call when the phone number receives an incoming SMS message.


status_callbackstring<uri>

The URL we call using the status_callback_method to send status information to your application.


status_callback_methodenum<http-method>

The HTTP method we use to call status_callback. Can be: GET or POST.

Possible values:
GETPOST

uristring

The URI of the resource, relative to https://api.twilio.com.


voice_caller_id_lookupboolean

Whether we look up the caller's caller-ID name from the CNAM database (additional charges apply). Can be: true or false.


voice_fallback_methodenum<http-method>

The HTTP method we use to call voice_fallback_url. Can be: GET or POST.

Possible values:
GETPOST

voice_fallback_urlstring<uri>

The URL that we call when an error occurs retrieving or executing the TwiML requested by url.


voice_methodenum<http-method>

The HTTP method we use to call voice_url. Can be: GET or POST.

Possible values:
GETPOST

voice_urlstring<uri>

The URL we call when the phone number assigned to this application receives a call.


public_application_connect_enabledboolean

Whether to allow other Twilio accounts to dial this applicaton using Dial verb. Can be: true or false.


Create an Application resource

create-an-application-resource page anchor
POST https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Applications.json

Creates a new application within your account.

If successful, Twilio responds with a representation of the new application.

Path parameters

path-parameters page anchor
Property nameTypeRequiredPIIDescription
AccountSidSID<AC>required

The SID of the Account that will create the resource.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34
Property nameTypeRequiredPIIDescription
ApiVersionstringOptional

The API version to use to start a new TwiML session. Can be: 2010-04-01 or 2008-08-01. The default value is the account's default API version.


VoiceUrlstring<uri>Optional

The URL we should call when the phone number assigned to this application receives a call.


VoiceMethodenum<http-method>Optional

The HTTP method we should use to call voice_url. Can be: GET or POST.

Possible values:
GETPOST

VoiceFallbackUrlstring<uri>Optional

The URL that we should call when an error occurs retrieving or executing the TwiML requested by url.


VoiceFallbackMethodenum<http-method>Optional

The HTTP method we should use to call voice_fallback_url. Can be: GET or POST.

Possible values:
GETPOST

StatusCallbackstring<uri>Optional

The URL we should call using the status_callback_method to send status information to your application.


StatusCallbackMethodenum<http-method>Optional

The HTTP method we should use to call status_callback. Can be: GET or POST.

Possible values:
GETPOST

VoiceCallerIdLookupbooleanOptional

Whether we should look up the caller's caller-ID name from the CNAM database (additional charges apply). Can be: true or false.


SmsUrlstring<uri>Optional

The URL we should call when the phone number receives an incoming SMS message.


SmsMethodenum<http-method>Optional

The HTTP method we should use to call sms_url. Can be: GET or POST.

Possible values:
GETPOST

SmsFallbackUrlstring<uri>Optional

The URL that we should call when an error occurs while retrieving or executing the TwiML from sms_url.


SmsFallbackMethodenum<http-method>Optional

The HTTP method we should use to call sms_fallback_url. Can be: GET or POST.

Possible values:
GETPOST

SmsStatusCallbackstring<uri>Optional

The URL we should call using a POST method to send status information about SMS messages sent by the application.


MessageStatusCallbackstring<uri>Optional

The URL we should call using a POST method to send message status information to your application.


FriendlyNamestringOptional

A descriptive string that you create to describe the new application. It can be up to 64 characters long.


PublicApplicationConnectEnabledbooleanOptional

Whether to allow other Twilio accounts to dial this applicaton using Dial verb. Can be: true or false.

Create a New Application Within Your Account

create-a-new-application-within-your-account page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_16
// Download the helper library from https://www.twilio.com/docs/node/install
_16
import twilio from "twilio";
_16
_16
// Find your Account SID and Auth Token at twilio.com/console
_16
// and set the environment variables. See http://twil.io/secure
_16
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_16
const authToken = process.env.TWILIO_AUTH_TOKEN;
_16
const client = twilio(accountSid, authToken);
_16
_16
const application = await client.applications.create({
_16
friendlyName: "Phone Me",
_16
voiceMethod: "GET",
_16
voiceUrl: "http://demo.twilio.com/docs/voice.xml",
_16
});
_16
_16
console.log(application.accountSid);

Output

_23
{
_23
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_23
"api_version": "2010-04-01",
_23
"date_created": "Mon, 22 Aug 2011 20:59:45 +0000",
_23
"date_updated": "Tue, 18 Aug 2015 16:48:57 +0000",
_23
"friendly_name": "Phone Me",
_23
"message_status_callback": "http://www.example.com/sms-status-callback",
_23
"sid": "APaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_23
"sms_fallback_method": "GET",
_23
"sms_fallback_url": "http://www.example.com/sms-fallback",
_23
"sms_method": "GET",
_23
"sms_status_callback": "http://www.example.com/sms-status-callback",
_23
"sms_url": "http://example.com",
_23
"status_callback": "http://example.com",
_23
"status_callback_method": "GET",
_23
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications/APaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",
_23
"voice_caller_id_lookup": false,
_23
"voice_fallback_method": "GET",
_23
"voice_fallback_url": "http://www.example.com/voice-callback",
_23
"voice_method": "GET",
_23
"voice_url": "http://demo.twilio.com/docs/voice.xml",
_23
"public_application_connect_enabled": true
_23
}


Fetch an Application resource

fetch-an-application-resource page anchor
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Applications/{Sid}.json

Property nameTypeRequiredPIIDescription
AccountSidSID<AC>required

The SID of the Account that created the Application resource to fetch.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

SidSID<AP>required

The Twilio-provided string that uniquely identifies the Application resource to fetch.

Pattern: ^AP[0-9a-fA-F]{32}$Min length: 34Max length: 34
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_14
// Download the helper library from https://www.twilio.com/docs/node/install
_14
import twilio from "twilio";
_14
_14
// Find your Account SID and Auth Token at twilio.com/console
_14
// and set the environment variables. See http://twil.io/secure
_14
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_14
const authToken = process.env.TWILIO_AUTH_TOKEN;
_14
const client = twilio(accountSid, authToken);
_14
_14
const application = await client
_14
.applications("APXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
_14
.fetch();
_14
_14
console.log(application.accountSid);

Output

_23
{
_23
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_23
"api_version": "2010-04-01",
_23
"date_created": "Mon, 22 Aug 2011 20:59:45 +0000",
_23
"date_updated": "Tue, 18 Aug 2015 16:48:57 +0000",
_23
"friendly_name": "Application Friendly Name",
_23
"message_status_callback": "http://www.example.com/sms-status-callback",
_23
"sid": "APXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_23
"sms_fallback_method": "GET",
_23
"sms_fallback_url": "http://www.example.com/sms-fallback",
_23
"sms_method": "GET",
_23
"sms_status_callback": "http://www.example.com/sms-status-callback",
_23
"sms_url": "http://example.com",
_23
"status_callback": "http://example.com",
_23
"status_callback_method": "GET",
_23
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications/APaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",
_23
"voice_caller_id_lookup": false,
_23
"voice_fallback_method": "GET",
_23
"voice_fallback_url": "http://www.example.com/voice-callback",
_23
"voice_method": "GET",
_23
"voice_url": "http://example.com",
_23
"public_application_connect_enabled": false
_23
}


Read multiple Application resources

read-multiple-application-resources page anchor
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Applications.json

Returns a list of Application resource representations, each representing an application within your account. The list includes paging information.

Property nameTypeRequiredPIIDescription
AccountSidSID<AC>required

The SID of the Account that created the Application resources to read.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34
Property nameTypeRequiredPIIDescription
FriendlyNamestringOptional

The string that identifies the Application resources to read.


PageSizeintegerOptional

How many resources to return in each list page. The default is 50, and the maximum is 1000.

Minimum: 1Maximum: 1000

PageintegerOptional

The page index. This value is simply for client state.

Minimum: 0

PageTokenstringOptional

The page token. This is provided by the API.

List All Application Resource Representations

list-all-application-resource-representations page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_12
// Download the helper library from https://www.twilio.com/docs/node/install
_12
import twilio from "twilio";
_12
_12
// Find your Account SID and Auth Token at twilio.com/console
_12
// and set the environment variables. See http://twil.io/secure
_12
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_12
const authToken = process.env.TWILIO_AUTH_TOKEN;
_12
const client = twilio(accountSid, authToken);
_12
_12
const applications = await client.applications.list({ limit: 20 });
_12
_12
applications.forEach((a) => console.log(a.accountSid));

Output

_35
{
_35
"applications": [
_35
{
_35
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_35
"api_version": "api_version",
_35
"date_created": "Thu, 30 Jul 2015 20:12:30 +0000",
_35
"date_updated": "Thu, 30 Jul 2015 20:12:30 +0000",
_35
"friendly_name": "friendly_name",
_35
"message_status_callback": "https://www.example.com",
_35
"sid": "APaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_35
"sms_fallback_method": "POST",
_35
"sms_fallback_url": "https://www.example.com",
_35
"sms_method": "POST",
_35
"sms_status_callback": "https://www.example.com",
_35
"sms_url": "https://www.example.com",
_35
"status_callback": "https://www.example.com",
_35
"status_callback_method": "POST",
_35
"uri": "uri",
_35
"voice_caller_id_lookup": true,
_35
"voice_fallback_method": "GET",
_35
"voice_fallback_url": "https://www.example.com",
_35
"voice_method": "POST",
_35
"voice_url": "https://www.example.com",
_35
"public_application_connect_enabled": false
_35
}
_35
],
_35
"end": 358,
_35
"first_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Applications.json?PageSize=50&Page=0",
_35
"next_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Applications.json?PageSize=50&Page=50",
_35
"page": 418,
_35
"page_size": 50,
_35
"previous_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Applications.json?PageSize=50&Page=0",
_35
"start": 801,
_35
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Applications.json"
_35
}

Return the Application named 'MyApp'

return-the-application-named-myapp page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_15
// Download the helper library from https://www.twilio.com/docs/node/install
_15
import twilio from "twilio";
_15
_15
// Find your Account SID and Auth Token at twilio.com/console
_15
// and set the environment variables. See http://twil.io/secure
_15
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_15
const authToken = process.env.TWILIO_AUTH_TOKEN;
_15
const client = twilio(accountSid, authToken);
_15
_15
const applications = await client.applications.list({
_15
friendlyName: "MyApp",
_15
limit: 20,
_15
});
_15
_15
applications.forEach((a) => console.log(a.accountSid));

Output

_35
{
_35
"applications": [
_35
{
_35
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_35
"api_version": "api_version",
_35
"date_created": "Thu, 30 Jul 2015 20:12:30 +0000",
_35
"date_updated": "Thu, 30 Jul 2015 20:12:30 +0000",
_35
"friendly_name": "friendly_name",
_35
"message_status_callback": "https://www.example.com",
_35
"sid": "APaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
_35
"sms_fallback_method": "POST",
_35
"sms_fallback_url": "https://www.example.com",
_35
"sms_method": "POST",
_35
"sms_status_callback": "https://www.example.com",
_35
"sms_url": "https://www.example.com",
_35
"status_callback": "https://www.example.com",
_35
"status_callback_method": "POST",
_35
"uri": "uri",
_35
"voice_caller_id_lookup": false,
_35
"voice_fallback_method": "GET",
_35
"voice_fallback_url": "https://www.example.com",
_35
"voice_method": "POST",
_35
"voice_url": "https://www.example.com",
_35
"public_application_connect_enabled": false
_35
}
_35
],
_35
"end": 291,
_35
"first_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Applications.json?PageSize=50&Page=0",
_35
"next_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Applications.json?PageSize=50&Page=50",
_35
"page": 626,
_35
"page_size": 50,
_35
"previous_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Applications.json?PageSize=50&Page=0",
_35
"start": 77,
_35
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Applications.json"
_35
}


Update an Application resource

update-an-application-resource page anchor
POST https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Applications/{Sid}.json

Tries to update the application's properties, and returns the updated resource representation if successful. The returned response is identical to that returned above when making a GET request.

Property nameTypeRequiredPIIDescription
AccountSidSID<AC>required

The SID of the Account that created the Application resources to update.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

SidSID<AP>required

The Twilio-provided string that uniquely identifies the Application resource to update.

Pattern: ^AP[0-9a-fA-F]{32}$Min length: 34Max length: 34
Property nameTypeRequiredPIIDescription
FriendlyNamestringOptional

A descriptive string that you create to describe the resource. It can be up to 64 characters long.


ApiVersionstringOptional

The API version to use to start a new TwiML session. Can be: 2010-04-01 or 2008-08-01. The default value is your account's default API version.


VoiceUrlstring<uri>Optional

The URL we should call when the phone number assigned to this application receives a call.


VoiceMethodenum<http-method>Optional

The HTTP method we should use to call voice_url. Can be: GET or POST.

Possible values:
GETPOST

VoiceFallbackUrlstring<uri>Optional

The URL that we should call when an error occurs retrieving or executing the TwiML requested by url.


VoiceFallbackMethodenum<http-method>Optional

The HTTP method we should use to call voice_fallback_url. Can be: GET or POST.

Possible values:
GETPOST

StatusCallbackstring<uri>Optional

The URL we should call using the status_callback_method to send status information to your application.


StatusCallbackMethodenum<http-method>Optional

The HTTP method we should use to call status_callback. Can be: GET or POST.

Possible values:
GETPOST

VoiceCallerIdLookupbooleanOptional

Whether we should look up the caller's caller-ID name from the CNAM database (additional charges apply). Can be: true or false.


SmsUrlstring<uri>Optional

The URL we should call when the phone number receives an incoming SMS message.


SmsMethodenum<http-method>Optional

The HTTP method we should use to call sms_url. Can be: GET or POST.

Possible values:
GETPOST

SmsFallbackUrlstring<uri>Optional

The URL that we should call when an error occurs while retrieving or executing the TwiML from sms_url.


SmsFallbackMethodenum<http-method>Optional

The HTTP method we should use to call sms_fallback_url. Can be: GET or POST.

Possible values:
GETPOST

SmsStatusCallbackstring<uri>Optional

Same as message_status_callback: The URL we should call using a POST method to send status information about SMS messages sent by the application. Deprecated, included for backwards compatibility.


MessageStatusCallbackstring<uri>Optional

The URL we should call using a POST method to send message status information to your application.


PublicApplicationConnectEnabledbooleanOptional

Whether to allow other Twilio accounts to dial this applicaton using Dial verb. Can be: true or false.

Set the VoiceUrl and SmsUrl on an Application to 'http://myapp.com/awesome'

set-the-voiceurl-and-smsurl-on-an-application-to-httpmyappcomawesome page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_17
// Download the helper library from https://www.twilio.com/docs/node/install
_17
import twilio from "twilio";
_17
_17
// Find your Account SID and Auth Token at twilio.com/console
_17
// and set the environment variables. See http://twil.io/secure
_17
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_17
const authToken = process.env.TWILIO_AUTH_TOKEN;
_17
const client = twilio(accountSid, authToken);
_17
_17
const application = await client
_17
.applications("AP2a0747eba6abf96b7e3c3ff0b4530f6e")
_17
.update({
_17
smsUrl: "http://demo.twilio.com/docs/sms.xml",
_17
voiceUrl: "http://demo.twilio.com/docs/voice.xml",
_17
});
_17
_17
console.log(application.accountSid);

Output

_23
{
_23
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_23
"api_version": "2010-04-01",
_23
"date_created": "Mon, 22 Aug 2011 20:59:45 +0000",
_23
"date_updated": "Tue, 18 Aug 2015 16:48:57 +0000",
_23
"friendly_name": "Application Friendly Name",
_23
"message_status_callback": "http://www.example.com/sms-status-callback",
_23
"sid": "AP2a0747eba6abf96b7e3c3ff0b4530f6e",
_23
"sms_fallback_method": "GET",
_23
"sms_fallback_url": "http://www.example.com/sms-fallback",
_23
"sms_method": "GET",
_23
"sms_status_callback": "http://www.example.com/sms-status-callback",
_23
"sms_url": "http://demo.twilio.com/docs/sms.xml",
_23
"status_callback": "http://example.com",
_23
"status_callback_method": "GET",
_23
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications/APaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",
_23
"voice_caller_id_lookup": false,
_23
"voice_fallback_method": "GET",
_23
"voice_fallback_url": "http://www.example.com/voice-callback",
_23
"voice_method": "GET",
_23
"voice_url": "http://demo.twilio.com/docs/voice.xml",
_23
"public_application_connect_enabled": true
_23
}


Delete an Application resource

delete-an-application-resource page anchor
DELETE https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Applications/{Sid}.json

Delete this application. If this application's sid is assigned to any IncomingPhoneNumber resources as a VoiceApplicationSid or SmsApplicationSid it will be removed.

If successful, Twilio will return an HTTP 204 response with no body.

Property nameTypeRequiredPIIDescription
AccountSidSID<AC>required

The SID of the Account that created the Application resources to delete.

Pattern: ^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34

SidSID<AP>required

The Twilio-provided string that uniquely identifies the Application resource to delete.

Pattern: ^AP[0-9a-fA-F]{32}$Min length: 34Max length: 34
Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_10
// Download the helper library from https://www.twilio.com/docs/node/install
_10
import twilio from "twilio";
_10
_10
// Find your Account SID and Auth Token at twilio.com/console
_10
// and set the environment variables. See http://twil.io/secure
_10
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_10
const authToken = process.env.TWILIO_AUTH_TOKEN;
_10
const client = twilio(accountSid, authToken);
_10
_10
await client.applications("APXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX").remove();


Rate this page: