Logo
Zoom Public API Documentation

List meeting participants QoS Summary

GET {{baseUrl}}/metrics/meetings/:meetingId/participants/qos_summary?page_size=1&next_page_token=<string>

Return a list of meeting participants from past meetings and the summary their quality of service received during the meeting. The data returned indicates the connection quality for sending or receiving video, audio, and shared content.

Note:

This API may return empty values for participants' user_name and email responses when the account calling this API. * Does not have a signed HIPAA business associate agreement (BAA). * Is a legacy HIPAA BAA account. * Displays data for any users who are not part of the host's account (external users) unless they meet certain conditions. See Email address display rules for details.

Prerequisites: * A Business or a higher plan. * Developers must subscribe to the QSS summary event to receive data from this API.

Rate Limit Label: HEAVY

 

Body PARAM

Key Datatype Required Description 
page_size
number The number of items returned per page.
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 the available result list exceeds the 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": 30, "participants": [ { "id": "<string>", "participant_id": "<string>", "user_name": "<string>", "email": "<email>", "qos": [ { "type": "as_device_to_rwg", "details": { "min_bitrate": "<string>", "avg_bitrate": "<string>", "max_bitrate": "<string>", "min_latency": "<string>", "avg_latency": "<string>", "max_latency": "<string>", "min_jitter": "<string>", "avg_jitter": "<string>", "max_jitter": "<string>", "min_loss": "<string>", "avg_loss": "<string>", "max_loss": "<string>", "resolution": "<string>", "min_frame_rate": "<string>", "avg_frame_rate": "<string>", "max_frame_rate": "<string>", "zoom_min_cpu_usage": "<string>", "zoom_avg_cpu_usage": "<string>", "zoom_max_cpu_usage": "<string>", "system_max_cpu_usage": "<string>" } }, { "type": "as_device_from_rwg", "details": { "min_bitrate": "<string>", "avg_bitrate": "<string>", "max_bitrate": "<string>", "min_latency": "<string>", "avg_latency": "<string>", "max_latency": "<string>", "min_jitter": "<string>", "avg_jitter": "<string>", "max_jitter": "<string>", "min_loss": "<string>", "avg_loss": "<string>", "max_loss": "<string>", "resolution": "<string>", "min_frame_rate": "<string>", "avg_frame_rate": "<string>", "max_frame_rate": "<string>", "zoom_min_cpu_usage": "<string>", "zoom_avg_cpu_usage": "<string>", "zoom_max_cpu_usage": "<string>", "system_max_cpu_usage": "<string>" } } ] }, { "id": "<string>", "participant_id": "<string>", "user_name": "<string>", "email": "<email>", "qos": [ { "type": "audio_device_to_rwg", "details": { "min_bitrate": "<string>", "avg_bitrate": "<string>", "max_bitrate": "<string>", "min_latency": "<string>", "avg_latency": "<string>", "max_latency": "<string>", "min_jitter": "<string>", "avg_jitter": "<string>", "max_jitter": "<string>", "min_loss": "<string>", "avg_loss": "<string>", "max_loss": "<string>", "resolution": "<string>", "min_frame_rate": "<string>", "avg_frame_rate": "<string>", "max_frame_rate": "<string>", "zoom_min_cpu_usage": "<string>", "zoom_avg_cpu_usage": "<string>", "zoom_max_cpu_usage": "<string>", "system_max_cpu_usage": "<string>" } }, { "type": "video_input", "details": { "min_bitrate": "<string>", "avg_bitrate": "<string>", "max_bitrate": "<string>", "min_latency": "<string>", "avg_latency": "<string>", "max_latency": "<string>", "min_jitter": "<string>", "avg_jitter": "<string>", "max_jitter": "<string>", "min_loss": "<string>", "avg_loss": "<string>", "max_loss": "<string>", "resolution": "<string>", "min_frame_rate": "<string>", "avg_frame_rate": "<string>", "max_frame_rate": "<string>", "zoom_min_cpu_usage": "<string>", "zoom_avg_cpu_usage": "<string>", "zoom_max_cpu_usage": "<string>", "system_max_cpu_usage": "<string>" } } ] } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/metrics/meetings/:meetingId/participants/qos_summary?page_size=1&next_page_token=<string>?page_size=1&next_page_token=<string>' -H 'Accept: application/json'

ENDPOINTS