Can't find version1 endpoint in version2

Previously I raised issue that I am not able to find below version1 endpoints in version 2

  1. https://api.zoom.us/v1/webinar/attendees/list
  2. https://api.zoom.us/v1/metrics/webinardetail

In reply to above, I got below answer for the version2 endpoint(Sequence as per above )

  1. https://api.zoom.us/v2/metrics/webinars/{webinarId}/participants
  2. https://api.zoom.us/v2/metrics/webinars/{webinarId}

Now the issue is if I compare (Version 1 and Version2) JSON response of 1st endpoint then it’s completely different.

For 2nd endpoint, I found version 1 have participants array data whereas in version 2 participants is integer count

 

Please suggest me correct version2 endpoint

Hi Hardik, 

With version 2 we have separated the webinar endpoints and reconstructed the response JSON so that  https://api.zoom.us/v2/metrics/webinars/{webinarId} will only return the details of the webinar and https://api.zoom.us/v2/metrics/webinars/{webinarId}/participants returns all participants of that specific webinar. 

For https://api.zoom.us/v1/metrics/webinardetail the  https://api.zoom.us/v2/metrics/webinars/{webinarId} is the correct v2 endpoint. 

Thanks