get_account_users {zoomr} | R Documentation |
Get All Users in an Account
Description
Get all users in a zoom account. The user id is required to get a list of webinars hosted by a particular user.
Usage
get_account_users(account_id, client_id, client_secret)
Arguments
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 the list of all users in the account.
See Also
See <https://marketplace.zoom.us/docs/api-reference/zoom-api/> for documentation on the Zoom API.
Examples
## Not run:
dat <- get_account_users(your_account_id,
your_client_id,
your_client_secret)
## End(Not run)
[Package zoomr version 0.3.0 Index]