On premise recording server now unusable

Updated Request with MC parameter on https://marketplace.zoom.us/docs/api-reference/zoom-api/methods#operation/recordingsList:

Set mc query parameter (boolean as a string data type) === true. Then the response should include in the payload’s recording_files.file_path but ONLY for Zoom On-Premise Accounts, and it will be the file path to the binary data file. Example:

{
“from”: “2019-08-15”,
“to”: “2019-09-15”,
“page_count”: 1,
“page_size”: 30,
“total_records”: 1,
“next_page_token”: “”,
“meetings”: [
{
“uuid”: “XXXXXXXnCkPuA==”,
“id”: 1000000000000,
“account_id”: “XXXXXXXhdEEE”,
“host_id”: “XXXXXXXBBBBBBBfp8uQ”,
“topic”: “MyTestPollMeeting”,
“type”: 2,
“start_time”: “2019-08-29T21:54:49Z”,
“timezone”: “America/Los_Angeles”,
“duration”: 1,
“total_size”: 47383,
“recording_count”: 1,
“share_url”: “Error - Zoom”,
“recording_files”: [
{
“id”: “XXXXXXXBB-8718e”,
“meeting_id”: “gkABCDEnCkPuA==”,
“recording_start”: “2019-08-29T21:54:55Z”,
“recording_end”: “2019-08-29T21:55:24Z”,
“file_type”: “M4A”,
“file_size”: 10098,
“play_url”: “Error - Zoom”,
“download_url”: “Error - Zoom”,
“status”: “completed”,
“recording_type”: “audio_only”
},
{
“id”: “96119b=kdfhf791”,
“meeting_id”: “gkABCDEnCkPuA==”,
“recording_start”: “2019-08-29T21:54:55Z”,
“recording_end”: “2019-08-29T21:55:24Z”,
“file_type”: “MP4”,
“file_size”: 37285,
“play_url”: “Error - Zoom”,
“download_url”: “Error - Zoom”,
“status”: “completed”,
“recording_type”: “shared_screen_with_speaker_view”,
“file_path”: “/opt/zoom/meeting_connector_files/…/filename.ext” // <<<< NOTE THIS PROPERTY AND ITS DESCRIPTION IN DOCS
}
]
}
]
}