Logo
Zoom Public API Documentation

Get a meeting

GET {{baseUrl}}/meetings/:meetingId?occurrence_id=<string>&show_previous_occurrences=<boolean>

Retrieve the given meeting's details.

Scopes: meeting:read,meeting:read:admin

Rate Limit Label: LIGHT

 

Body PARAM

Key Datatype Required Description 
occurrence_id
string Meeting occurrence ID. Provide this field to view meeting details of a particular occurrence of the [recurring meeting](https://support.zoom.us/hc/en-us/articles/214973206-Scheduling-Recurring-Meetings).
show_previous_occurrences
string Set this field's value to `true` to view meeting details of all previous occurrences of a [recurring meeting](https://support.zoom.us/hc/en-us/articles/214973206-Scheduling-Recurring-Meetings).



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "assistant_id": "<string>", "host_email": "<email>", "host_id": "<string>", "id": "<long>", "uuid": "<string>", "agenda": "<string>", "created_at": "<dateTime>", "duration": "<integer>", "encrypted_password": "<string>", "h323_password": "<string>", "join_url": "<string>", "chat_join_url": "<string>", "occurrences": [ { "duration": "<integer>", "occurrence_id": "<string>", "start_time": "<dateTime>", "status": "available" }, { "duration": "<integer>", "occurrence_id": "<string>", "start_time": "<dateTime>", "status": "deleted" } ], "password": "<string>", "pmi": "<string>", "pre_schedule": false, "recurrence": { "type": 1, "end_date_time": "<dateTime>", "end_times": 1, "monthly_day": 1, "monthly_week": 4, "monthly_week_day": 6, "repeat_interval": "<integer>", "weekly_days": "1" }, "settings": { "allow_multiple_devices": "<boolean>", "alternative_hosts": "<string>", "alternative_hosts_email_notification": true, "alternative_host_update_polls": "<boole
Curl
curl -X GET 'https://api.zoom.us/v2/meetings/:meetingId?occurrence_id=<string>&show_previous_occurrences=<boolean>?occurrence_id=<string>&show_previous_occurrences=<boolean>' -H 'Accept: application/json'

ENDPOINTS