Search + K

Command Palette

Search for a command to run...

Sign In

Retrieve a list of applications representing an application within the requesting account

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

Retrieve a list of applications representing an application within the requesting account

Parameters

path Path Parameters

Name Type
AccountSid required

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

`AC${string}`

query Query Parameters

Name Type
FriendlyName

The string that identifies the Application resources to read.

string
PageSize

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

number
Page

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

number
PageToken

The page token. This is provided by the API.

string

Responses

200 application/json

OK

{
applications?: ApiV2010AccountApplication
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;
}
[]
;
end?: number;
first_page_uri?: string;
next_page_uri?: string | null;
page?: number;
page_size?: number;
previous_page_uri?: string | null;
start?: number;
uri?: string;
}