Search + K

Command Palette

Search for a command to run...

Sign In

Fetch the application specified by the provided sid

GET /2010-04-01/Accounts/{AccountSid}/Applications/{Sid}.json
Copy endpoint
https://api.twilio.com

Fetch the application specified by the provided sid

Parameters

path Path Parameters

Name Type
AccountSid required

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

`AC${string}`
Sid required

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

`AP${string}`

Responses

200 application/json

OK

interface ApiV2010AccountApplication {
account_sid?: `AC${string}` | null;
api_version?: string | null;
date_created?: string | null;
date_updated?: string | null;
friendly_name?: string | null;
message_status_callback?: string | null;
sid?: `AP${string}` | null;
sms_fallback_method?: "GET" | "POST" | null;
sms_fallback_url?: string | null;
sms_method?: "GET" | "POST" | null;
sms_status_callback?: string | null;
sms_url?: string | null;
status_callback?: string | null;
status_callback_method?: "GET" | "POST" | null;
uri?: string | null;
voice_caller_id_lookup?: boolean | null;
voice_fallback_method?: "GET" | "POST" | null;
voice_fallback_url?: string | null;
voice_method?: "GET" | "POST" | null;
voice_url?: string | null;
public_application_connect_enabled?: boolean | null;
}