Using List Meetings does not display occurrence meetings

Hi, @cayala,

Thank you for providing that clarification. Here is a helpful Developer Forum Post on the described behavior. To get all occurrences, you want to call:

  1. List Meetings. Note, this endpoint is designed to return only the last occurrence of a recurring meeting.
'https://api.zoom.us/v2/meetings/{recurringMeetingId}'
  1. Then, with the last occurrence, you will want to fetch a specific occurrence:
`https://api.zoom.us/v2/meetings/{recurringMeetingId}?occurrence_id={specificOccurrenceId}`

Best,
Donte