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:
Scopes:
dashboard_webinars:read:admin
,
dashboard:read:admin
Rate Limit Label
:
Heavy
Request Params
| 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":"\u003cstring\u003e","page_size":"\u003cinteger\u003e","participants":[{"date_time":"\u003cdateTime\u003e","email":"\u003cemail\u003e","quality":"GOOD","user_id":"\u003cstring\u003e","comment":"\u003cstring\u003e"},{"date_time":"\u003cdateTime\u003e","email":"\u003cemail\u003e","quality":"NOT GOOD","user_id":"\u003cstring\u003e","comment":"\u003cstring\u003e"}]}