Empty answer in /past_meetings/{meetingId}/instances

We are processing several meetings daily, near 200.

Each day, info from a couple of meetings cannot be retrieved using API
https://api.zoom.us/v2/past_meetings/{meetingId}/instances
We cycle between all instances from a meeting, to get all the unique UUIDs, to retrieve the recordings.

We got as answer :
{
“meetings”:
}

But… Using https://api.zoom.us/v2/report/meetings/{meetingId} I can get the basic results with no problem. So, meeting does exists…

Also I receive with no problems the webhook “meeting.ended”…

Going to the control panel in ZOOM admin account, NO info is displayed in past meetings.
but… several meeting recordings are available en zoom control panel (one for each instance)

For Example, ended meeting 97610971982 is not available in zoom control panel, cannot get any results, but 4 instances are available in the Recording Admin page…

Using JWT Tokens with PHP and CURL…Lot of integrations made with API works flawleslly…

I cannot figure out the error… of if it’s a bug in API.

Please, help.

Hi @Dani,

Thanks for reaching out about this, and happy to take a closer look.

Can you please provide an example Meeting ID that returns the empty meetings object when calling https://api.zoom.us/v2/past_meetings/{meetingId}/instances?

This will help me to debug.

Thanks!
Will

Thanks Will…

It was included indeed in my post,

You can debug for example my meeting ID 97610971982, which ended yesterday.
No info in Control Panel, no info from API using https://api.zoom.us/v2/past_meetings/{meetingId}/instances
meeting.ended received from webhook and 2 videos recorded in recording control panel.

You can also test Meeting ID 972 1990 2215

Hi @Dani,

Thanks for sharing these IDs. In taking a look, I can see that all of the instances under these meetings had only 1 attendee. Meetings with just 1 attendee will not be returned by this endpoint, as they’ll need to have 2 or more attendees to be considered a past instance of a meeting.

Currently, only our List Meeting Participants (with query parameter pastOne) will return meetings with 1 participant:

I hope this helps to clarify,
Will

Ok, got it…

I’m looking for a way to get all meeting instances, cause it is the only way I know to delete meeting recordings from API.

I’m using, and it’s working well, https://api.zoom.us/v2/meetings/$id/recordings?action=trash

cycling any uuid coming from api.zoom.us/v2/past_meetings/ID/instances, I can delete all possible recordings from one meeting ID

So, now I know instances are not working for meetings with only one participant… Any other approach you can suggest? I’m still interested on delete those recordings…

Hi @Dani,

Good question—the only endpoint that returns the UUID for past instances of a meeting that had 1 user would be this one (again, with pastOne query parameter):

You can use this to retrieve UUIDs for those meetings.

Thanks!
Will

Ok, not an easy task, but it works…
I found another way.
Keeping a webhook working, I can store all meeting.recording events in my database.
A daily CRON do the rest…

Both solutions are not the best, but works…

Thanks a lot.

Hi @Dani,

I appreciate the feedback, but I’m glad to hear it works. :slight_smile:

Best,
Will

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