Logo
Zoom Public API Documentation

List Zoom meetings client feedback

GET {{baseUrl}}/metrics/client/feedback?from=<date>&to=<date>

Use this API to return Zoom meetings client feedback survey results. 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.

Prerequisites: * A Business or higher account. * The "Feedback to Zoom" option enabled.

Scopes: dashboard_home:read:admin,dashboard:read:admin

Rate Limit Label: Heavy

 

Body PARAM

Key Datatype Required Description 
from
string (Required) Start date in 'yyyy-mm-dd' format. The date range defined by the &quot;from&quot; and &quot;to&quot; 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

{ "client_feedbacks": [ { "feedback_id": "<string>", "feedback_name": "<string>", "participants_count": "<integer>" }, { "feedback_id": "<string>", "feedback_name": "<string>", "participants_count": "<integer>" } ], "from": "<date>", "to": "<date>", "total_records": "<integer>" }



Curl
curl -X GET 'https://api.zoom.us/v2/metrics/client/feedback?from=<date>&to=<date>?from=<date>&to=<date>' -H 'Accept: application/json'

ENDPOINTS