action twilio_fetch_queue { label: "FetchQueue" description: "Fetch an instance of a queue identified by the QueueSid" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Queues/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "Sid"] additionalProperties: false } output: { 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`." } } } }