Logo
Zoom Public API Documentation

Get post webinar feedback

GET {{baseUrl}}/metrics/webinars/:webinarId/participants/satisfaction?type=live&page_size=30&next_page_token=<string>

When a Webinar ends, each attendee will be prompted to share their Webinar experience by clicking either thumbs up or thumbs down. Use this API to retrieve the feedback submitted for a specific webinar. 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: dashboard_webinars:read:admin,dashboard:read:admin

Rate Limit Label: 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.
page_size
number The number of records returned within a single API call.
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.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "next_page_token": "<string>", "page_size": "<integer>", "participants": [ { "date_time": "<dateTime>", "email": "<email>", "quality": "GOOD", "user_id": "<string>", "comment": "<string>" }, { "date_time": "<dateTime>", "email": "<email>", "quality": "NOT GOOD", "user_id": "<string>", "comment": "<string>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/metrics/webinars/:webinarId/participants/satisfaction?type=live&page_size=30&next_page_token=<string>?type=live&page_size=30&next_page_token=<string>' -H 'Accept: application/json'

ENDPOINTS