View source: R/get_webinar_registrants.R
get_webinar_registrants | R Documentation |
Get registrant info about a single webinar.
get_webinar_registrants(
webinar_id,
account_id,
client_id,
client_secret,
registrant_status = c("approved")
)
webinar_id |
Zoom Webinar Id, typically an 11 digit number. |
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. |
registrant_status |
One or more of "approved", "pending", or "denied". Default is "approved" only. |
A data frame with data on all the registrants for a webinar.
See <https://marketplace.zoom.us/docs/api-reference/zoom-api/> for documentation on the Zoom API.
## Not run:
dat <- get_webinar_registrants(webinar_id = "99911112222",
your_account_id,
your_client_id,
your_client_secret,
c("approved", "denied", "pending"))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.