action zoom_dashboard_zoom_room { label: "Get Zoom Rooms details" description: "The Zoom Rooms dashboard metrics lets you know the type of configuration a Zoom room has and details on the meetings held in that room. \n\nUse this API to retrieve information on a specific room.

\n**Scopes:** `dashboard_zr:read:admin`

\n\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Heavy`**Prerequisites:**
\n* Business, Education or API Plan with Zoom Rooms set up.\n" provider: zoom method: GET path: "/metrics/zoomrooms/{zoomroomId}" encoding: json input: { type: "object" properties: { from: { type: "string" format: "date" } next_page_token: { type: "string" } page_size: { type: "integer" } to: { type: "string" format: "date" } zoomroomId: { type: "string" } } required: ["from", "to", "zoomroomId"] additionalProperties: false } output: { type: "object" } }