list_webinars {zoomr} | R Documentation |
Get List of Webinars for a User.
Description
Get list of webinars for a User. This is used to get the webinar Id's to pass into other functions.
Usage
list_webinars(user_id, account_id, client_id, client_secret)
Arguments
user_id |
Zoom User Id. |
account_id |
Account Id granted by the Zoom developer app. |
client_id |
Client Id granted by the Zoom developer app. |
client_secret |
Client secret granted by the Zoom developer app. |
Value
A data frame with all of the webinars hosted by a specific user.
See Also
See <https://marketplace.zoom.us/docs/api-reference/zoom-api/> for documentation on the Zoom API.
Examples
## Not run:
dat <- get_webinar_details(user_id = "user_id_string",
your_account_id,
your_client_id,
your_client_secret)
## End(Not run)
[Package zoomr version 0.3.0 Index]