Hi,
GET /meetings/{meetingId}/recordings
When I tried to get meeting’s recordings using GET /meetings/{meetingId}/recordings and get audio files of each meeting participant, I got the following response (excerpt).
{
"uuid": "meeting_id",
"id": 1234567890,
...
"participant_audio_files": [
{
"id": "uuid",
"recording_start": "2022-09-09T00:10:30Z",
"recording_end": "2022-09-09T01:55:36Z",
"file_name": "Audio only - Name",
"file_type": "M4A",
...
},
{
"id": "uuid",
"recording_start": "2022-09-09T00:10:30Z",
"recording_end": "2022-09-09T01:55:36Z",
"file_name": "Audio only(Shared Content) - Name",
"file_type": "M4A",
...
},
],
}
There is “Audio only(Shared Content) - Name” as the value of the “file_name” key in “participant_audio_files”. What is an audio file for “file_name” containing “(Shared Content)”? And also what are the conditions or situations for how a user attend zoom meeting when this audio file and this json object are created?
Thanks.