GET {{baseUrl}}/metrics/issues/zoomrooms?from=<date>&to=<date>
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. Prerequisites: Scopes: Rate Limit Label:
dashboard_home:read:admin
,dashboard:read:admin
Heavy
Body
PARAM
Key | Datatype | Required | Description |
from
|
string | (Required) Start date in 'yyyy-mm-dd' format. The date range defined by the "from" and "to" parameters should only be one month as the report includes only one month worth of data at once. | |
to
|
string | (Required) End date. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"from": "<date>",
"to": "<date>",
"total_records": "<integer>",
"zoom_rooms": [
{
"id": "<string>",
"issues_count": "<integer>",
"room_name": "<string>"
},
{
"id": "<string>",
"issues_count": "<integer>",
"room_name": "<string>"
}
]
} |
ENDPOINTS