We are able to successfully retrieve a list of phone user recordings by making a call with JWT to https://api.zoom.us/v2/phone/users/user@domain.com/recordings/.
This returns an array containing a JSON object for each recording. Included in this JSON object is a property named “download_url”. When trying to retrieve this URL we receive the following response, regardless of whether or not we pass in our JWT: {"errorCode":401,"message":"Invalid token."}
How can we download the recording files? Additionally, is there a way to delete the recordings once we have downloaded them?
No exact timeline, but we are working to resolve asap.
As for deleting a downloaded recording that lives on your computer Zoom does not have the capability to do that, you will have to delete it yourself. however if you are downloading the files to a cloud storage service like dropbox or AWS S3 they do have APIs to delete files.
I didn’t mean deleting a local recording. I meant deleting the file that is stored in the Zoom account once we have successfully downloaded it and stored it elsewhere.