GET
/2010-04-01/Accounts/{AccountSid}/Addresses/{Sid}.json 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 fetch. | `AC${string}` |
Sid
required
The Twilio-provided string that uniquely identifies the Address resource to fetch. | `AD${string}` |
Responses
200 application/json
OK
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;
}
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;
}