Using List Meetings does not display occurrence meetings

Using this template helps us debug your issues more effectively :slight_smile:

Description
When using List Meeting can’t see occurrence meetings.

Error
Occurrence meetings are not displayed, but individual meetings are.

Which App Type (OAuth / Chatbot / JWT / Webhook)?
JWT

Which Endpoint/s?
/users/{userId}/meetings

How To Reproduce (If applicable)
Steps to reproduce the behavior:

  1. Request URL / Headers (without credentials) / Body
  2. See error

Screenshots (If applicable)
If applicable, add screenshots to help explain your problem.

Additional context
I use “scheduled” as type of meetings.

Hi @cayala
Thanks for reaching out to the Zoom Developer Forum! I am happy to help here!
When calling the List Meetings endpoint

Make sure to pass the query parameter type=upcoming or scheduled to get a list of all the scheduled meetings. The default value is “live” which will only list ongoing meetings.

Hope this helps,
Best,
Elisa

Thank you very much for the info, but I use the scheduled one, but I do not get the recurring meetings of each scheduled day, that is, I see only meetings with a type 2 result and one of only type 8, but when I change to upcoming I see only the next ones that are 3 type 8 registers.

Links of the results screenshots

From what I understand, according to your documentation, you must obtain the 2 recurring meetings using “scheduled” since they are equivalent to the “upcoming” ones, I remain attentive to your kind answer.

@cayala You’ll want to call the Get a Meeting API with the Meeting ID in order to see the occurrences for that meeting.

Let me know if that helps.

Hi @MaxM, it’s not exactly what I’m looking for, in the previous comment I refer to the fact that I only get from https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetings passing the “scheduled” parameter " I get all the meetings except the ones that are recurring schedule, would I have to enable any special permission? or some configuration in the account?

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

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.