Identifying past instances of reoccuring meetings

Hi, @john3 / @tommy

I am fighting with the same thing for the last couple hours, and I still can’t see how you can match meeting participants with the meeting registrants.

Ok, /meetings/:meetingId returns occurrence_id with the parameter (thanks to @tommy in my own thread about this), but there is no relation with (meetingID & occurrence_id) pair with the participant data returned by using meetingUuid.

This meeting has 6 occurrences and occurrence record has only the following fields - nothing related with meetingUuid:

"occurrences": [
    {
        "occurrence_id": "1595185200000",
        "start_time": "2020-07-19T19:00:00Z",
        "duration": 60,
        "status": "available"
    },

I use this occurrence_id to get the registrants for this occurrence. However, there is no occurrence_id parameter to be used with the list meeting participants endpoint. /metrics/meetings/:meetingId/participants.

How can we find the corresponding meeting instance (meetingUuid) for an occurrence? I simply want to compare Occurrence 1’s registrant data with the corresponding meeting instance’s participants.

@john3 - from you message, I can see that we are looking for the same thing, except you figured it out. Could you please help me to figure it out as well?

Thank you very much.