GET {{baseUrl}}/metrics/meetings/:meetingId/participants/satisfaction?type=live&next_page_token=<string>&page_size=30
When a meeting ends, each attendee will be prompted to share their meeting experience by clicking either thumbs up or thumbs down. Use this API to retrieve the feedback submitted for a specific meeting. Note that this API only works for meetings scheduled after December 20, 2020. Prerequisites:
* Feedback to Zoom setting must be enabled by the participant prior to the meeting.
* The user making the API request must be enrolled in a Business or a higher plan. Scopes: Rate Limit Label: dashboard_meetings:read:admin
,dashboard:read:admin
Heavy
Body
PARAM
Key | Datatype | Required | Description |
type
|
string | Specify a value to get the response for the corresponding meeting type. The value of this field can be one of the following: `past` - Meeting that already occurred in the specified date range. `pastOne` - Past meetings that were attended by only one user. `live` - Live meetings. If you do not provide this field, the default value will be `live` and thus, the API will only query responses for live meetings. | |
next_page_token
|
string | Use the next page token to paginate through large result sets. A next page token is returned whenever the set of available results exceeds the current page size. This token's expiration period is 15 minutes. | |
page_size
|
number | The number of records returned within a single API call. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"next_page_token": "<string>",
"page_size": "<integer>",
"participants": [
{
"date_time": "<dateTime>",
"email": "<email>",
"quality": "NOT GOOD",
"user_id": "<string>",
"comment": "<string>"
},
{
"date_time": "<dateTime>",
"email": "<email>",
"quality": "NOT GOOD",
"user_id": "<string>",
"comment": "<string>"
}
]
} |
ENDPOINTS