Learn R Programming

zoomr (version 0.4.0)

get_meeting_details: Get Meeting Details

Description

Get metadata about a single meeting including participant count, duration, and other meeting statistics.

Usage

get_meeting_details(meeting_id, account_id, client_id, client_secret)

Value

A data frame with the metadata about a meeting. The type

column contains integer codes describing the meeting structure/format, while meeting_format_label provides human-readable descriptions:

  • 1 = Instant meeting

  • 2 = Scheduled meeting

  • 3 = Recurring meeting (no fixed time)

  • 8 = Recurring meeting (fixed time)

  • 10 = Screen share only meeting

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.

Details

This function retrieves basic meeting metadata. For more comprehensive meeting analytics and participant data, users with Pro+ Zoom accounts can access the Reports API endpoints which provide enhanced meeting details and participant information.

See Also

Examples

Run this code
if (FALSE) {
dat <- get_meeting_details(meeting_id = "81753923023",
  your_account_id,
  your_client_id,
  your_client_secret)
}

Run the code above in your browser using DataLab