action zoom_dashboard_im { label: "Get IM metrics" description: "Get [metrics](https://support.zoom.us/hc/en-us/articles/204654719-Dashboard#h_cc7e9749-1c70-4afb-a9a2-9680654821e4) on how users are utilizing the Zoom Chat Client.


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**Scope:** `dashboard_im:read:admin`
\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Resource-intensive`
\n**Prerequisites:**
\n* Business or a higher plan.\n\n" provider: zoom method: GET path: "/metrics/im" 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" } } required: ["from", "to"] additionalProperties: false } output: { type: "object" } }