API End Point:
https://api.zoom.us/v2/meetings/{$meetingId}/recordings
Here is the meeting I’m trying to pull recordings from:
https://zoom.us/recording/management/detail?meeting_id=%2FkYxlLM4RIKRNDyiU32QvA%3D%3D
{“code”:3301,“message”:“This recording does not exist.”}
This works with most of my other recordings, just not this one though. But I think its because the meeting ID %2FkYxlLM4RIKRNDyiU32QvA%3D%3D
URL decoded that it is /kYxlLM4RIKRNDyiU32QvA==
So that makes the actual call to the API as
https://api.zoom.us/v2/meetings//kYxlLM4RIKRNDyiU32QvA==/recordings
And it returns that recording doesnt exist error.