Logo
Zoom Public API Documentation

Get meeting details

GET {{baseUrl}}/metrics/meetings/:meetingId?type=live

Get details on live or past meetings. This overview will show if features such as audio, video, screen sharing, and recording were being used in the meeting. You can also see the license types of each user on your account.
You can specify a monthly date range for the dashboard data using the from and to query parameters. The month should fall within the last six months.

Prerequisites:

  • Business or a higher plan.

Scopes: dashboard_meetings:read:admin,dashboard:read:admin

Rate Limit Label: HEAVY

 

Body PARAM

Key Datatype Required Description 
type
string The type of meeting to query: * `past` — All past meetings. * `pastOne` — All past one-user meetings. * `live` - All live meetings. This value defaults to `live`.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "host": "<string>", "custom_keys": [ { "key": "<string>", "value": "<string>" }, { "key": "<string>", "value": "<string>" } ], "dept": "<string>", "duration": "<string>", "email": "<string>", "end_time": "<dateTime>", "has_3rd_party_audio": "<boolean>", "has_archiving": "<boolean>", "has_pstn": "<boolean>", "has_recording": "<boolean>", "has_screen_share": "<boolean>", "has_sip": "<boolean>", "has_video": "<boolean>", "has_voip": "<boolean>", "has_manual_captions": "<boolean>", "has_automated_captions": "<boolean>", "id": "<long>", "in_room_participants": "<integer>", "participants": "<integer>", "start_time": "<dateTime>", "topic": "<string>", "user_type": "<string>", "uuid": "<string>", "has_meeting_summary": "<boolean>" }



Curl
curl -X GET 'https://api.zoom.us/v2/metrics/meetings/:meetingId?type=live?type=live' -H 'Accept: application/json'

ENDPOINTS