Search + K

Command Palette

Search for a command to run...

Sign In

Create a new Twilio Subaccount from the account making the request

POST /2010-04-01/Accounts.json
Copy endpoint
https://api.twilio.com

Create a new Twilio Subaccount from the account making the request

Request Body

application/x-www-form-urlencoded
{ FriendlyName?: string; }

Responses

201 application/json

Created

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

The status of this account. Usually active, but can be suspended or closed.

type AccountEnumStatus = "active" | "suspended" | "closed"
;
subresource_uris?: {} | null;
type?: AccountEnumType

The type of this account. Either Trial or Full if it's been upgraded

type AccountEnumType = "Trial" | "Full"
;
uri?: string | null;
}