Retrieve the details of a meeting.**Scopes:** meeting:read:admin meeting:read ** Rate Limit Label https://marketplace.zoom.us/docs/apireference/ratelimits#ratelimits :** Light

getMeeting(
  meetingId,
  occurrence_id = NULL,
  show_previous_occurrences = NULL,
  return_response = F
)

Arguments

meetingId

The meeting ID in **long** format. The data type of this field is "long" represented as int64 in JSON .While storing it in your database, store it as a **long** data type and **not as an integer**, as the Meeting IDs can be longer than 10 digits.

occurrence_id

Meeting Occurrence ID. Provide this field to view meeting details of a particular occurrence of the recurring meeting https://support.zoom.us/hc/enus/articles/214973206SchedulingRecurringMeetings .

show_previous_occurrences

Set the value of this field to true if you would like to view meeting details of all previous occurrences of a recurring meeting https://support.zoom.us/hc/enus/articles/214973206SchedulingRecurringMeetings .

return_response

Whether to return the response instead of the response content. Defaults to FALSE.