Search + K

Command Palette

Search for a command to run...

Sign In

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

Parameters

path Path Parameters

Name Type
AccountSid required

The SID of the Account that is responsible for the Address resource to read.

`AC${string}`

query Query Parameters

Name Type
CustomerName

The customer_name of the Address resources to read.

string
FriendlyName

The string that identifies the Address resources to read.

string
EmergencyEnabled

Whether the address can be associated to a number for emergency calling.

boolean
IsoCountry

The ISO country code of the Address 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

{
addresses?: ApiV2010AccountAddress
interface ApiV2010AccountAddress {
account_sid?: `AC${string}` | null;
city?: string | null;
customer_name?: string | null;
date_created?: string | null;
date_updated?: string | null;
friendly_name?: string | null;
iso_country?: string | null;
postal_code?: string | null;
region?: string | null;
sid?: `AD${string}` | null;
street?: string | null;
uri?: string | null;
emergency_enabled?: boolean | null;
validated?: boolean | null;
verified?: boolean | null;
street_secondary?: string | 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;
}