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.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^AC[0-9a-fA-F]{32}$
. -
The Twilio-provided string that uniquely identifies the Application resource to fetch.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^AP[0-9a-fA-F]{32}$
.
GET
/2010-04-01/Accounts/{AccountSid}/Applications/{Sid}.json
curl \
--request GET 'https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Applications/{Sid}.json' \
--user "username:password"
Response examples (200)
{
"sid": "APaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Applications/APaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",
"sms_url": "http://example.com",
"voice_url": "http://example.com",
"sms_method": "GET",
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"api_version": "2010-04-01",
"date_created": "Mon, 22 Aug 2011 20:59:45 +0000",
"date_updated": "Tue, 18 Aug 2015 16:48:57 +0000",
"voice_method": "GET",
"friendly_name": "Application Friendly Name",
"status_callback": "http://example.com",
"sms_fallback_url": "http://www.example.com/sms-fallback",
"voice_fallback_url": "http://www.example.com/voice-callback",
"sms_fallback_method": "GET",
"sms_status_callback": "http://www.example.com/sms-status-callback",
"voice_fallback_method": "GET",
"status_callback_method": "GET",
"voice_caller_id_lookup": false,
"message_status_callback": "http://www.example.com/sms-status-callback",
"public_application_connect_enabled": false
}