action zoom_dashboard_issue_detail_zoom_room { label: "Get issues of Zoom Rooms" description: "Get information about the issues that occured on the Top 25 **Zoom Rooms with issues** in an acount.
You can specify a monthly date range for the dashboard data using the `from` and `to` query parameters. The month should fall within the last six months.\n\n**Scope:** `dashboard_home:read:admin`
\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Heavy`
\n**Prerequisites:**
\n* Business or a higher plan.\n* Zoom Room must be enabled in the account." provider: zoom method: GET path: "/metrics/issues/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" } }