Hey Max,
Thanks for the quick response. The recording ID or the ID from the download URL don’t tell me who the user is. When the API returns the data, I’m not sure how to determine which participant audio file belongs to which user. For example, let’s say I’m in a meeting with 2 other users named John. The API call will return the following data for participant_audio_files:
"participant_audio_files": [
{
"download_url": "random_download_url",
"file_name": "Audio only - Krunal",
"file_path": "random_file_path",
"file_size": 65536,
"file_type": "M4A",
"id": "random_file_id",
"play_url": "random_play_url",
"recording_end": "random_end_time",
"recording_start": "random_start_time",
"status": "completed"
},
{
"download_url": "random_download_url",
"file_name": "Audio only - John",
"file_path": "random_file_path",
"file_size": 65536,
"file_type": "M4A",
"id": "random_file_id",
"play_url": "random_play_url",
"recording_end": "random_end_time",
"recording_start": "random_start_time",
"status": "completed"
},
{
"download_url": "random_download_url",
"file_name": "Audio only - John",
"file_path": "random_file_path",
"file_size": 65536,
"file_type": "M4A",
"id": "random_file_id",
"play_url": "random_play_url",
"recording_end": "random_end_time",
"recording_start": "random_start_time",
"status": "completed"
},
]
The id
property in the returned data refers to the file id, not the user id. The only user identifying information is the file_name which includes the user’s name. I know to match my zoom userID with the first file because it has my name in the file name. However, I can’t do that with the other 2 files because they both have the same file name since both users had the same Zoom name. So, there is no sure way to match which zoom userIds the other 2 files belong to. I need to be sure that the 2nd audio file came from John with user_id 123 and the 3rd one came from John with user_id 789 for example.
Is there a way to get this information? Is there another API call that can help me get user info about the recording files?