Webinar API: Meeting not found or has expired

I tried to query the webinar details for a past webinar with id 517912534, however the first GET request returns  “Meeting 517912534 is not found or has expired” error, the other 2 GET requests are able to return the summary data(but insufficient).

  1. Get request: https://api.zoom.us/v2/webinars/517912534

returns “not found or expired error”:


I also tried another 2 GET requests, which can return the summary data: 

  1. GET request: https://api.zoom.us/v2/report/webinars/517912534

returns:

{
“uuid”: “b4ytWjACR0mi8mpZevSw+g==”,
“id”: 517912534,
“host_id”: “rHWKKTVTRm-fMvOypeLR_Q”,
“type”: 9,
“topic”: “xxxxxx”,
“user_email”: “xxxxxx”,
“start_time”: “2018-06-07T18:20:49Z”,
“end_time”: “2018-06-07T18:28:40Z”,
“duration”: 8,
“total_minutes”: 13,
“participants_count”: 2
}

 

  1. GETrequest: https://api.zoom.us/v2/metrics/webinars/517912534?type=past

returns the following data:

{

“uuid”: “b4ytWjACR0mi8mpZevSw+g==”,
“id”: 517912534,
“topic”: “xxxxxx”,
“host”: “xxxx”,
“email”: “xxxxxx”,
“user_type”: “Pro|Webinar100”,
“start_time”: “2018-06-07T18:20:49Z”,
“end_time”: “2018-06-07T18:28:40Z”,
“duration”: “07:51”,
“participants”: 2,
“has_pstn”: false,
“has_voip”: true,
“has_3rd_party_audio”: false,
“has_video”: false,
“has_screen_share”: false,
“has_recording”: true,
“has_sip”: false

}

 


Why the first GET request return the meeting not found & expired error?

Hi Weiyi, 

I’ll reach out to our Engineers to see why the first Webinar link is not returning any data and follow up shortly. 

Thanks

Hi Weiyi, 

The “/v2/webinars/517912534” API is used to retrieve the webinar scheduled info and the “/v2/report/webinars/517912534” API is used to retrieve the past webinar info. 

 

Since /v2/webinars/517912534 has been deleted you can’t retrieve the webinar info through the “/v2/webinars/517912534” API. However, since the webinar was started, you can still retrieve info through “/v2/report/webinars/517912534” API.

 

Thanks

Hi Michael, I got it, Thanks for the reply!