Retrieve a list of applications representing an application within the requesting account
An Application instance resource represents an application that you have created with Twilio. An application inside of Twilio is just a set of URLs and other configuration data that tells Twilio how to behave when one of your Twilio numbers receives a call or SMS message.
Retrieve a list of applications representing an application within the requesting account
Path parameters
-
The SID of the Account that created the Application resources to read.
Query parameters
-
FriendlyName string
The string that identifies the Application resources to read.
-
PageSize integer
How many resources to return in each list page. The default is 50, and the maximum is 1000.
Minimum value is
1
, maximum value is1000
.
GET /2010-04-01/Accounts/{AccountSid}/Applications.json
curl \
-X GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Applications.json \
--user "username:password"
Response examples (200)
{
"applications": [
{
"account_sid": "string",
"api_version": "string",
"date_created": "string",
"date_updated": "string",
"friendly_name": "string",
"message_status_callback": "https://example.com",
"sid": "string",
"sms_fallback_method": "HEAD",
"sms_fallback_url": "https://example.com",
"sms_method": "HEAD",
"sms_status_callback": "https://example.com",
"sms_url": "https://example.com",
"status_callback": "https://example.com",
"status_callback_method": "HEAD",
"uri": "https://example.com",
"voice_caller_id_lookup": true,
"voice_fallback_method": "HEAD",
"voice_fallback_url": "https://example.com",
"voice_method": "HEAD",
"voice_url": "https://example.com"
}
],
"end": 42,
"first_page_uri": "https://example.com",
"next_page_uri": "https://example.com",
"page": 42,
"page_size": 42,
"previous_page_uri": "https://example.com",
"start": 42,
"uri": "https://example.com"
}
Response examples (200)
{
"applications": [
{
"account_sid": "string",
"api_version": "string",
"date_created": "string",
"date_updated": "string",
"friendly_name": "string",
"message_status_callback": "https://example.com",
"sid": "string",
"sms_fallback_method": "HEAD",
"sms_fallback_url": "https://example.com",
"sms_method": "HEAD",
"sms_status_callback": "https://example.com",
"sms_url": "https://example.com",
"status_callback": "https://example.com",
"status_callback_method": "HEAD",
"uri": "https://example.com",
"voice_caller_id_lookup": true,
"voice_fallback_method": "HEAD",
"voice_fallback_url": "https://example.com",
"voice_method": "HEAD",
"voice_url": "https://example.com"
}
],
"end": 42,
"first_page_uri": "https://example.com",
"next_page_uri": "https://example.com",
"page": 42,
"page_size": 42,
"previous_page_uri": "https://example.com",
"start": 42,
"uri": "https://example.com"
}