API Endpoint(s) and/or Zoom API Event(s)
Description
I am trying to figure out the user corresponding to the audio on the response of the participant separate audio files array in the meeting recording details. So far, I have noticed that the response returns the host in the first index of the array. Does this hold true for all requests to this endpoint?
"participant_audio_files": [
{
"id": "",
"recording_start": "2023-09-27T07:06:29Z",
"recording_end": "2023-09-27T07:07:13Z",
"file_name": "Host?",
"file_type": "M4A",
"file_extension": "M4A",
"file_size": 708602,
"play_url": "",
"download_url": "",
"status": "completed"
},
{
"id": "",
"recording_start": "2023-09-27T07:06:29Z",
"recording_end": "2023-09-27T07:07:13Z",
"file_name": "Participant one?",
"file_type": "M4A",
"file_extension": "M4A",
"file_size": 708602,
"play_url": "",
"download_url": "",
"status": "completed"
}
],