GET {{baseUrl}}/metrics/client/feedback/:feedbackId?from=<date>&to=<date>&page_size=30&next_page_token=<string>
Retrieve detailed information on a Zoom meetings client feedback. Prerequisites:
* Business or higher account
* Feedback to Zoom enabled. Scopes: Rate Limit Label:
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.dashboard_home:read:admin
,dashboard:read:admin
Heavy
Body
PARAM
Key | Datatype | Required | Description |
from
|
string | ||
to
|
string | ||
page_size
|
number | ||
next_page_token
|
string |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"from": "<date>",
"to": "<date>",
"next_page_token": "<string>",
"page_size": 30,
"client_feedback_details": [
{
"email": "<string>",
"meeting_id": "<string>",
"participant_name": "<string>",
"time": "<dateTime>"
},
{
"email": "<string>",
"meeting_id": "<string>",
"participant_name": "<string>",
"time": "<dateTime>"
}
]
} |
ENDPOINTS