Modify the properties of a given Account
POST
/2010-04-01/Accounts/{Sid}.json https://api.twilio.com
Modify the properties of a given Account
Parameters
path Path Parameters
| Name | Type |
|---|---|
Sid
required
The Account Sid that uniquely identifies the account to update | `AC${string}` |
Request Body
application/x-www-form-urlencoded
{ FriendlyName?: string;Status?: AccountEnumStatus ; }
Responses
200 application/json
OK
interface ApiV2010Account {
auth_token?: string | null;
date_created?: string | null;
date_updated?: string | null;
friendly_name?: string | null;
owner_account_sid?: `AC${string}` | null;
sid?: `AC${string}` | null;
status?:AccountEnumStatus ;
subresource_uris?: {} | null;
type?:AccountEnumType ;
uri?: string | null;
}
auth_token?: string | null;
date_created?: string | null;
date_updated?: string | null;
friendly_name?: string | null;
owner_account_sid?: `AC${string}` | null;
sid?: `AC${string}` | null;
status?:
subresource_uris?: {} | null;
type?:
uri?: string | null;
}