action zoom_dashboard_client_feedback_detail {
label: "Get zoom meetings client feedback"
description: "Retrieve detailed information on a [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:** `dashboard_home:read:admin`
\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Heavy`\n\n`"
provider: zoom
method: GET
path: "/metrics/client/feedback/{feedbackId}"
encoding: json
input: {
type: "object"
properties: {
feedbackId: {
type: "string"
}
from: {
type: "string"
format: "date"
}
next_page_token: {
type: "string"
}
page_size: {
type: "integer"
}
to: {
type: "string"
format: "date"
}
}
required: ["feedbackId"]
additionalProperties: false
}
output: {
type: "object"
}
}