03-31-2022 10:46 AM
Can anyone confirm if it's possible to download/access Webex recording files via the API? I see we can list them, but wasn't sure if it was possible to programmatically download them.
03-31-2022 10:50 AM - edited 03-31-2022 12:06 PM
The get-recording-details request will return temporaryDirectDownloadLinks
which contains direct URLs to the recorded files.
If you have the recording ID and use this API, you will get a temporary download link, which will download the recording directly. Example response seen below.
temporaryDirectDownloadLinks": {
"recordingDownloadLink": "direct_download_link_here",
"audioDownloadLink": "direct_download_link_here",
"expiration": "2021-05-11T14:25:22Z"
},
03-31-2022 10:54 AM
As per API description, the parameter is only available if preventDownload was turned on. Otherwise, the download link will be provided in the parameter downloadUrl
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide