Logo
Zoom Public API Documentation

List client meeting satisfaction

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

If the End of Meeting Feedback Survey option is enabled, attendees will be prompted with a survey window where they can tap either the Thumbs Up or Thumbs Down button that indicates their Zoom meeting experience. With this API, you can get information on the attendees' meeting satisfaction. Specify a monthly date range for the query using the from and to query parameters. The month should fall within the last six months.

To get information on the survey results with negative experiences (indicated by Thumbs Down), use the Get Zoom meetings client feedback API.

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

Rate Limit Label: Heavy

 

Body PARAM

Key Datatype Required Description 
from
string The start date for the query in &ldquo;yyyy-mm-dd&rdquo; format.
to
string The end date for the query in &ldquo;yyyy-mm-dd&rdquo; format.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "client_satisfaction": [ { "date": "<date>", "good_count": "<integer>", "none_count": "<integer>", "not_good_count": "<integer>", "satisfaction_percent": "<double>" }, { "date": "<date>", "good_count": "<integer>", "none_count": "<integer>", "not_good_count": "<integer>", "satisfaction_percent": "<double>" } ], "from": "<date>", "to": "<date>", "total_records": "<integer>" }



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

ENDPOINTS