You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def delete_cloud_recording(meeting_id):
response = requests.delete(url=API_ENDPOINT_DELETE_RECORDING(
meeting_id), headers=AUTHORIZATION_HEADER)
if not response.ok:
print(response.content)
return response.ok
The text was updated successfully, but these errors were encountered:
vdv2013
changed the title
Add automatic recording deletion
Add an option for automatic recording deletion from the cloud after a successful download
Nov 5, 2022
One important use-case for mass download of recordings is to free some space in the zoom cloud storage. But there is not delete function right now...
This could be added easily with something like this:
as well as
The text was updated successfully, but these errors were encountered: