action zoom_dashboard_issue_zoom_room {
label: "Get top 25 Zoom Rooms with issues"
description: "Get information on top 25 Zoom Rooms with issues in a month. The month specified with the \"from\" and \"to\" range should fall within the last six months.
\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"
encoding: json
input: {
type: "object"
properties: {
from: {
type: "string"
format: "date"
}
to: {
type: "string"
format: "date"
}
}
required: ["from", "to"]
additionalProperties: false
}
output: {
type: "object"
}
}