Fetch an instance of a queue identified by the QueueSid
GET
/2010-04-01/Accounts/{AccountSid}/Queues/{Sid}.json https://api.twilio.com
Fetch an instance of a queue identified by the QueueSid
Parameters
path Path Parameters
| Name | Type |
|---|---|
AccountSid
required
The SID of the Account that created the Queue resource to fetch. | `AC${string}` |
Sid
required
The Twilio-provided string that uniquely identifies the Queue resource to fetch | `QU${string}` |
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;
}
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;
}