Recording API unusual behaviour

Description/Error
When I list all recordings of a user then for a single meeting id I find two objects created and then when I fetch the recording of a particular recording it returns only the first objects.

Listing all Recordings:
{
“account_id”: “jcS2kayVRBuihKQoL9OGkw”,
“duration”: 10,
“host_id”: “ubhZslpETviRDR53O2nMSA”,
“id”: 645491069,
“recording_count”: 1,
“recording_files”: [
{
“file_size”: 54,
“file_type”: “CHAT”,
“id”: “7149db39-73c7-4b7a-9acb-fd61158c9cac”,
“meeting_id”: “43/e6ikcRR+3P3LBUGZzow==”,
“recording_end”: “2019-12-04T15:31:24Z”,
“recording_start”: “2019-12-04T15:20:29Z”,
“recording_type”: “chat_file”,
“status”: “completed”
}
],
“start_time”: “2019-12-04T15:20:27Z”,
“timezone”: “Asia/Calcutta”,
“topic”: “Intermediate Level- HTML and CSS”,
“total_size”: 54,
“type”: 2,
“uuid”: “43/e6ikcRR+3P3LBUGZzow==”
},
{
“account_id”: “jcS2kayVRBuihKQoL9OGkw”,
“duration”: 0,
“host_id”: “ubhZslpETviRDR53O2nMSA”,
“id”: 645491069,
“recording_count”: 2,
“recording_files”: [
{
“file_size”: 5626,
“file_type”: “M4A”,
“id”: “c9e320b0-daea-43e1-b6c1-9f3de93faf93”,
“meeting_id”: “eUJwDDSxS7m30aeq2hLUoA==”,
“recording_end”: “2019-12-04T15:18:30Z”,
“recording_start”: “2019-12-04T15:18:14Z”,
“recording_type”: “audio_only”,
“status”: “completed”
},
{
“file_size”: 48033,
“file_type”: “MP4”,
“id”: “fc439112-515b-4157-9868-f067c311ce1f”,
“meeting_id”: “eUJwDDSxS7m30aeq2hLUoA==”,
“recording_end”: “2019-12-04T15:18:30Z”,
“recording_start”: “2019-12-04T15:18:14Z”,
“recording_type”: “shared_screen_with_speaker_view”,
“status”: “completed”
}
],
“start_time”: “2019-12-04T15:18:12Z”,
“timezone”: “Asia/Calcutta”,
“topic”: “Intermediate Level- HTML and CSS”,
“total_size”: 53659,
“type”: 2,
“uuid”: “eUJwDDSxS7m30aeq2hLUoA==”
},

Fetching recording of the meeting:

Hey @tvarshney,

Are you passing in the meetingID or the meetingUUID?

From the the docs:
“If the meeting ID is provided instead of UUID, the response will be for the latest meeting instance.”

I’m guessing the latest meeting instance only has one recording.

Let me know what you are passing in for meetingID.

Thanks,
Tommy

@tommy I have tried with both meetingId and meetingUUID, both are giving me same results.

Hey @tvarshney,

Can you provide your request URL, including the params so I can help debug?

Thanks
Tommy