Search + K

Command Palette

Search for a command to run...

Sign In

Update the queue with the new parameters

POST /2010-04-01/Accounts/{AccountSid}/Queues/{Sid}.json
Copy endpoint
https://api.twilio.com

Update the queue with the new parameters

Parameters

path Path Parameters

Name Type
AccountSid required

The SID of the Account that created the Queue resource to update.

`AC${string}`
Sid required

The Twilio-provided string that uniquely identifies the Queue resource to update

`QU${string}`

Request Body

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

Responses

200 application/json

OK

interface ApiV2010AccountQueue {
date_updated?: string | null;
current_size?: number;
friendly_name?: string | null;
uri?: string | null;
account_sid?: `AC${string}` | null;
average_wait_time?: number;
sid?: `QU${string}` | null;
date_created?: string | null;
max_size?: number;
}