Hello,
We have issue with list meetings endpoint (GET /users/{userId}/meetings)
(docs url: Zoom Meeting API)
So here (in docs) we can see that the response has a UUID field inside the MEETINGS field.
According to the documentation this field is a unique Meeting ID and each meeting instance will generate its own Meeting UUID.
But currently, when I call this endpoint for user (meeting host), meetings with the same IDs has also the same UUIDs:
(Here is example of API response)
{
“uuid”: “00x2N0yUQR+9TlqusS2BRg==”,
“id”: 98809660078,
“start_time”: “2022-05-26T00:00:00Z”
…
},
{
“uuid”: “00x2N0yUQR+9TlqusS2BRg==”,
“id”: 98809660078,
“start_time”: “2022-05-19T00:00:00Z”,
….
}
You can see that there are 2 different meetings from the same response (since the date is different). But they have the same UUID.
Moreover, if we call another endpoint from your API GET /past_meetings/{meetingId}/instances
(docs url: Zoom Meeting API)
And we call it by the same meeting ID as on previous example (96474880335)
(Also example of API response):
“meetings”: [
{
“uuid”: “/fdqz+tjTSeCnGQv0leguw==”,
“start_time”: “2022-01-14T17:34:20Z”
},
{
“uuid”: “009z+Q6pQx+qXTpGF67MUg==”,
“start_time”: “2021-11-05T12:06:28Z”
},
{
“uuid”: “0dzYbmaeTp6GDTcPkHZ1YQ==”,
“start_time”: “2022-09-02T16:21:37Z”
},
{
“uuid”: “1GRmrps6QPKvODgxZcdqPg==”,
“start_time”: “2021-11-05T16:42:58Z”
}, …
We can see that in response every record has unique UUID value (but same id - 96474880335 from request).
So could you take a look and let us know if there is an issue with UUID in (GET /users/{userId}/meetings) endpoint?
Thank you in advance