action zoom_get_asite { label: "Get phone site details" description: "Sites allow you to organize Zoom Phone users in your organization. Use this API to get information about a specific [site](https://support.zoom.us/hc/en-us/articles/360020809672).\n\n\n**Prerequisites:**
\n* Account must have a Pro or a higher plan with Zoom Phone license.\n* Multiple Sites must be [enabled](https://support.zoom.us/hc/en-us/articles/360020809672-Managing-Multiple-Sites#h_05c88e35-1593-491f-b1a8-b7139a75dc15).
\n**Scope:** `phone:read:admin`
\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light`\n\n" provider: zoom method: GET path: "/phone/sites/{siteId}" encoding: json input: { type: "object" properties: { siteId: { type: "string" } } required: ["siteId"] additionalProperties: false } output: { type: "object" properties: { country: { type: "object" description: "Site country" properties: { code: { type: "string" description: "Two lettered country [code](https://marketplace.zoom.us/docs/api-reference/other-references/abbreviation-lists#countries)." } name: { type: "string" description: "Name of the country." } } } id: { type: "string" description: "Site ID. Unique Identifier of the site." } main_auto_receptionist: { type: "object" description: "[Main Auto Receptionist](https://support.zoom.us/hc/en-us/articles/360021121312#h_bc7ff1d5-0e6c-40cd-b889-62010cb98c57) for each site." properties: { extension_id: { type: "string" description: "Extension ID" } extension_number: { type: "integer" description: "Extension number" } id: { type: "string" description: "Unique Identifier of the Auto Receptionist." } name: { type: "string" description: "Name of the auto receptionist." } } } name: { type: "string" description: "Name of the Site." } short_extension: { type: "object" description: "Short extension of the phone site." properties: { length: { type: "integer" description: "The length of short extension number for the site." } } } site_code: { type: "integer" description: "[Site Code](https://support.zoom.us/hc/en-us/articles/360020809672-Managing-Multiple-Sites#h_79ca9c8f-c97b-4486-aa59-d0d9d31a525b)" } } } }