Format Your New Topic as Follows:
API Endpoint(s) and/or Zoom API Event(s)
Link the API endpoint(s) and/orZoom API Event(s) you’re working with to help give context.
Description
I am using the List Webinars endpoint. <docs_domain>/api/meetings/#tag/webinars/GET/users/{userId}/webinars (forum wont let me include links in post)
When I pass “upcoming” as the query string option for “type”, I notice that “agenda” is omitted from the webinars that are returned. The documentation states that “agenda” is truncated to 250 characters, but it does not indicate that “agenda” is to be omitted under the above condition.
Is this intended behavior that was not properly documented? Or is this a bug? Is there a way in the current version of the API that I can fetch “agenda” while providing the “upcoming” option for the “'type” query string value?
It seems like this used to be a bug in the past based on this other forum post (<forum_domain>/t/agenda-field-is-missing-when-fetch-all-meetings-with-upcoming-type/19531). It was indicated to have been fixed, but it’s definitely still happening in the current version of the API.
Error?
“agenda” is omitted from List Webinars result when passing “upcoming” as argument for “type” in query string.
How To Reproduce
Steps to reproduce the behavior:
curl --location 'https://api.zoom.us/v2/users/<USER_ID>/webinars?type=upcoming&page_size=300' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <ACCESS_TOKEN>'