POST
/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 update. | `AC${string}` |
Sid
required
The Twilio-provided string that uniquely identifies the Address resource to update. | `AD${string}` |
Request Body
application/x-www-form-urlencoded
{
FriendlyName?: string;
CustomerName?: string;
Street?: string;
City?: string;
Region?: string;
PostalCode?: string;
EmergencyEnabled?: boolean;
AutoCorrectAddress?: boolean;
StreetSecondary?: string;
}
FriendlyName?: string;
CustomerName?: string;
Street?: string;
City?: string;
Region?: string;
PostalCode?: string;
EmergencyEnabled?: boolean;
AutoCorrectAddress?: boolean;
StreetSecondary?: 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;
}