GET {{baseUrl}}/webinars/:webinarId?occurrence_id=<string>&show_previous_occurrences=<boolean>
Get details for a scheduled Zoom Webinar. Prerequisites:
* Pro or higher plan with a Webinar add-on. Scopes: Rate Limit Label: webinar:read:admin
,webinar:read
LIGHT
Body
PARAM
Key | Datatype | Required | Description |
occurrence_id
|
string | Unique identifier for an occurrence of a recurring webinar. [Recurring webinars](https://support.zoom.us/hc/en-us/articles/216354763-How-to-Schedule-A-Recurring-Webinar) can have a maximum of 50 occurrences. When you create a recurring Webinar using [**Create a webinar**](/docs/api-reference/zoom-api/methods#operation/webinarCreate) API, you can retrieve the Occurrence ID from the response of the API call. | |
show_previous_occurrences
|
string | Set the value of this field to `true` if you would like to view Webinar details of all previous occurrences of a recurring Webinar. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"host_email": "<email>",
"host_id": "<string>",
"id": "<long>",
"uuid": "<string>",
"agenda": "<string>",
"created_at": "<dateTime>",
"duration": "<integer>",
"join_url": "<string>",
"occurrences": [
{
"duration": "<integer>",
"occurrence_id": "<string>",
"start_time": "<dateTime>",
"status": "available"
},
{
"duration": "<integer>",
"occurrence_id": "<string>",
"start_time": "<dateTime>",
"status": "available"
}
],
"password": "<string>",
"encrypted_passcode": "<string>",
"h323_passcode": "<string>",
"recurrence": {
"type": 3,
"end_date_time": "<dateTime>",
"end_times": 1,
"monthly_day": "<integer>",
"monthly_week": 2,
"monthly_week_day": 7,
"repeat_interval": "<integer>",
"weekly_days": "<string>"
},
"settings": {
"allow_multiple_devices": "<boolean>",
"alternative_hosts": "<string>",
"alternative_host_update_polls": "& Curl curl -X GET 'https://api.zoom.us/v2/webinars/:webinarId?occurrence_id=<string>&show_previous_occurrences=<boolean>?occurrence_id=<string>&show_previous_occurrences=<boolean>' -H 'Accept: application/json' ENDPOINTS |