action zoom_dashboard_client_feedback { label: "List Zoom meetings client feedback" description: "Retrieve survey results from [Zoom meetings client feedback](https://support.zoom.us/hc/en-us/articles/115005855266-End-of-Meeting-Feedback-Survey#h_e30d552b-6d8e-4e0a-a588-9ca8180c4dbf).
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**Prerequisites:**\n* Business or higher account\n* [Feedback to Zoom](https://support.zoom.us/hc/en-us/articles/115005838023) enabled.\n\n**Scope:** `account:read:admin`
\n\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Heavy`" provider: zoom method: GET path: "/metrics/client/feedback" encoding: json input: { type: "object" properties: { from: { type: "string" format: "date" } to: { type: "string" format: "date" } } required: ["from", "to"] additionalProperties: false } output: { type: "object" properties: { client_feedbacks: { type: "array" items: { type: "object" properties: { feedback_id: { type: "string" description: "Feedback Id" } feedback_name: { type: "string" description: "Feedback Name" } participants_count: { type: "integer" description: "The number of participants that upvoted the feedback." } } } } from: { type: "string" format: "date" description: "Start date for this report" } to: { type: "string" format: "date" description: "End date for this report" } total_records: { type: "integer" description: "The number of all records available across pages" } } } }