Hi, I’m experiencing a weird behavior using the REST recording API
GET /meetings/{meetingId}/recordings
I start a Zoom meeting with recording on, meetingId:397142436 and end the meeting after 5 minutes, and after a little bit, I do
GET /meetings/397142436/recordings
I get the following
Response body
{
“uuid”: “DJ7pQagzQzmUmE9L5q/VKA==”,
“id”: 397142436,
“account_id”: “cH9WkmzdScGJg-ajfDiisQ”,
“host_id”: “9kuikscRR_qv9D4f37RMJQ”,
“topic”: “Casual - Time Management”,
“start_time”: “2018-10-20T03:22:39Z”,
“timezone”: “America/New_York”,
“duration”: 8,
“total_size”: 3469010,
“recording_count”: 1,
“recording_files”: [
{
“id”: “1374d33e-459d-4cf3-a9e1-2afc80faf42b”,
“meeting_id”: “DJ7pQagzQzmUmE9L5q/VKA==”,
“recording_start”: “2018-10-20T03:22:40Z”,
“recording_end”: “2018-10-20T03:30:01Z”,
“file_type”: “MP4”,
“file_size”: 3469010,
“play_url”: “https://openeducation.zoom.us/recording/play/0Gh8RxmKtWJlXlx0STRpiaSpHeAzCkHYW3rX6u_suP5wXtJWpJEgDt1Xh8Vipib8”,
“download_url”: “https://openeducation.zoom.us/recording/download/0Gh8RxmKtWJlXlx0STRpiaSpHeAzCkHYW3rX6u_suP5wXtJWpJEgDt1Xh8Vipib8”,
“status”: “completed”,
“recording_type”: “active_speaker”
}
]
}
I then start the same Zoom meeting again with recording on, meetingId:397142436, after 5 minute I end the meeting and do
GET /meetings/397142436/recordings
I get
Response body
{
“uuid”: “aLcuSmAmSw+6vT3SQXbVbg==”,
“id”: 397142436,
“account_id”: “cH9WkmzdScGJg-ajfDiisQ”,
“host_id”: “9kuikscRR_qv9D4f37RMJQ”,
“topic”: “Casual - Time Management”,
“start_time”: “2018-10-20T03:32:56Z”,
“timezone”: “America/New_York”,
“duration”: 5,
“total_size”: 3909892,
“recording_count”: 1,
“recording_files”: [
{
“id”: “ddb8675a-ccd7-4388-a754-9dffa647796d”,
“meeting_id”: “aLcuSmAmSw+6vT3SQXbVbg==”,
“recording_start”: “2018-10-20T03:32:57Z”,
“recording_end”: “2018-10-20T03:37:34Z”,
“file_type”: “MP4”,
“file_size”: 3909892,
“play_url”: “https://openeducation.zoom.us/recording/play/Uzj3k10u1kpYK_7_wSyCKtIOiab9vUi_HDutrBa0SOWlLaAYnHqzBctsdf8aVz3R”,
“download_url”: “https://openeducation.zoom.us/recording/download/Uzj3k10u1kpYK_7_wSyCKtIOiab9vUi_HDutrBa0SOWlLaAYnHqzBctsdf8aVz3R”,
“status”: “completed”,
“recording_type”: “active_speaker”
}
]
}
This one now shows only the new recording of this last meeting. I was expecting two recordings (the second meeting’s recording, and the first meeting’s recording), but it only shows the latest one.
Is it the expected behavior? If it is, how can I get all the recordings for
a meeting that gets repeated many times (started and ended many times), i.e this meetingId:397142436.
Please help me. Thanks.