action zoom_get_acall_queue { label: "Get call queue details" description: "Call queues allow you to route incoming calls to a group of users. For instance, you can use call queues to route calls to various departments in your organization such as sales, engineering, billing, customer service etc.
Use this API to get information on a specific Call Queue.

\n**Prerequisites:**
\n* Pro, Business, or Education account\n* Account owner or admin permissions\n* Zoom Phone license
\n**Scopes:** `phone:read:admin`
\n\n\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light`" provider: zoom method: GET path: "/phone/call_queues/{callQueueId}" encoding: json input: { type: "object" properties: { callQueueId: { type: "string" } } required: ["callQueueId"] additionalProperties: false } output: { type: "object" properties: { extension_number: { type: "integer" description: "Extension number assigned to the Call Queue." } id: { type: "string" description: "Unique Identifier of the Call Queue." } members: { type: "object" properties: { common_area_phones: { type: "array" items: { type: "object" properties: { id: { type: "string" description: "Unique Identifier of the [Common Area Phone](https://support.zoom.us/hc/en-us/articles/360028516231-Managing-Common-Area-Phones)." } name: { type: "string" description: "Name of the [Common Area Phone](https://support.zoom.us/hc/en-us/articles/360028516231-Managing-Common-Area-Phones)." } } } } users: { type: "array" items: { type: "object" properties: { id: { type: "string" description: "User ID: Unique Identifier of the user." } level: { type: "string" description: "Level of the user. The value can be one of the following:
\n`manager`: A call queue manager has the privilege to change call queue settings, policy settings and manage recordings and voicemail inbox. There can only be one manager for each call queue.

\n`user`: Regular user without the privileges of a manager." enum: ["manager", "user"] } name: { type: "string" description: "Name of the user." } receive_call: { type: "boolean" description: "Determines whether the user can receive calls or not." } } } } } } name: { type: "string" description: "Name of the Call Queue." } phone_numbers: { type: "array" items: { type: "object" properties: { id: { type: "string" description: "Unique Identifier of the number." } number: { type: "string" description: "Phone number." } source: { type: "string" description: "Source" enum: ["internal", "external"] } } } } site: { type: "object" properties: { id: { type: "string" description: "Unique identifier of the [site](https://support.zoom.us/hc/en-us/articles/360020809672-Managing-Multiple-Sites) where the Call Queue is assigned." } name: { type: "string" description: "Name of the [site](https://support.zoom.us/hc/en-us/articles/360020809672-Managing-Multiple-Sites)." } } } status: { type: "string" description: "Status of the Call Queue." enum: ["active", "inactive"] } } } }