Learn R Programming

zoomr (version 0.4.0)

get_meeting_participants: Get Meeting Participants

Description

Get participant information from all instances of a meeting. For recurring meetings, this function automatically retrieves participants from all occurrences, making it ideal for workshop attendance tracking.

Usage

get_meeting_participants(
  meeting_id,
  account_id,
  client_id,
  client_secret,
  page_size = 300
)

Value

A data frame with data on each participant at a meeting. Includes an 'instance_date' column to identify which occurrence each participant attended (NA for non-recurring meetings).

Arguments

meeting_id

Zoom Meeting ID (from list_meetings).

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.

page_size

Number of records per page. Default is 300.

Details

Important Limitations:

  • Meeting instances older than 15 months cannot be retrieved

  • This function works with all Zoom account types

Enhanced Features for Pro+ Users: Users with Pro+ Zoom accounts can access additional Reports API endpoints that provide more detailed participant analytics, custom date ranges, and enhanced filtering capabilities.

See Also

Examples

Run this code
if (FALSE) {
# Get participants from all instances of a meeting
dat <- get_meeting_participants(
  meeting_id = "81753923023",
  your_account_id,
  your_client_id,
  your_client_secret)
}

Run the code above in your browser using DataLab