action twilio_list_queue { label: "ListQueue" description: "Retrieve a list of queues belonging to the account used to make the request" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Queues.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Page: { type: "integer" } PageSize: { type: "integer" } PageToken: { type: "string" } } required: ["AccountSid"] additionalProperties: false } output: { type: "object" properties: { end: { type: "integer" } first_page_uri: { type: "string" format: "uri" } next_page_uri: { type: "string" format: "uri" } page: { type: "integer" } page_size: { type: "integer" } previous_page_uri: { type: "string" format: "uri" } queues: { type: "array" items: { type: "object" properties: { account_sid: { type: "string" description: "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created this Queue resource." } average_wait_time: { type: "integer" description: " The average wait time in seconds of the members in this queue. This is calculated at the time of the request." } current_size: { type: "integer" description: "The number of calls currently in the queue." } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that this resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } date_updated: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that this resource was last updated, specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } friendly_name: { type: "string" description: "A string that you assigned to describe this resource." } max_size: { type: "integer" description: " The maximum number of calls that can be in the queue. The default is 1000 and the maximum is 5000." } sid: { type: "string" description: "The unique string that that we created to identify this Queue resource." } uri: { type: "string" description: "The URI of this resource, relative to `https://api.twilio.com`." } } } } start: { type: "integer" } uri: { type: "string" format: "uri" } } } }