API Endpoint(s) and/or Zoom API Event(s)
GET /users/{userId}/meetings
Description
I am finding that when getting the list of meetings some meetings of type 3 (recurring) do not have a value for start_time
while others do. As I understand it, type 3 meetings should always have a start_time
.
Is this expected?
If so how does this occur for the user?
eg. meeting w/ uuid XC3hFhc+QNyPZJ/Yoz8CZQ==
below from my current response to GET https://api.zoom.us/v2/users/me/meetings
yields the following (note, this is a subset of the full result):
"meetings": [
{
"uuid": "XC3hFhc+QNyPZJ/Yoz8CZQ==",
"id": 97841502262,
"host_id": "GSFrfGtzTWyD8MnWIwJ0qQ",
"topic": "Weekly Tapestry Dev Sync",
"type": 3,
"duration": 30,
"timezone": "America/Chicago",
"created_at": "2022-11-16T23:01:36Z",
"join_url": "redacted"
},
...
{
"uuid": "h4VjZW98QIOrmb+UqZRk2w==",
"id": 99089424329,
"host_id": "GSFrfGtzTWyD8MnWIwJ0qQ",
"topic": "Eileen:G - Connect",
"type": 3,
"start_time": "2022-11-30T02:00:00Z",
"duration": 30,
"timezone": "America/Chicago",
"created_at": "2022-11-30T01:32:49Z",
"join_url": "redacted"
},
...