When using sJRJy/a8QoS+SR1pumlAHw==
to retrieve information from the /videosdk/sessions/${session_id}/recordings
API, the following response is returned, but I feel there may be an issue with the content of the participant_audio_files
in the response.
The specific issue is that recording_type
, user_id
, and user_key
are being returned empty.
{
"session_id": "Some Session ID",
"session_name": "Some Session Name",
"start_time": "2024-09-18T01:00:08Z",
"duration": 15,
"total_size": 140224528,
"recording_count": 5,
"recording_files": [
omission...
],
"participant_video_files": null,
"download_access_token": "",
"participant_audio_files": [
{
"id": "Some UUID",
"recording_start": "2024-09-18T01:01:30Z",
"recording_end": "2024-09-18T01:17:16Z",
"file_name": "Audio only - xxx",
"file_type": "M4A",
"file_extension": "M4A",
"file_size": 15055190,
"download_url": "Some Download URL",
"recording_type": "", <-- This is empty
"status": "completed",
"user_id": "", <-- This is empty
"user_key": "" <-- This is empty
},
omission...
]
}