Search + K

Command Palette

Search for a command to run...

Sign In

POST /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 will be responsible for the new Address resource.

`AC${string}`

Request Body

application/x-www-form-urlencoded
{
CustomerName: string;
Street: string;
City: string;
Region: string;
PostalCode: string;
IsoCountry: string;
FriendlyName?: string;
EmergencyEnabled?: boolean;
AutoCorrectAddress?: boolean;
StreetSecondary?: string;
}

Responses

201 application/json

Created

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;
}