Fetch the application specified by the provided sid
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.
Fetch the application specified by the provided sid
Path parameters
-
The SID of the Account that created the Application resource to fetch.
-
The Twilio-provided string that uniquely identifies the Application resource to fetch.
GET /2010-04-01/Accounts/{AccountSid}/Applications/{Sid}.json
curl \
-X GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Applications/{Sid}.json \
--user "username:password"
Response examples (200)
{
"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"
}
Response examples (200)
{
"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"
}