We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Per https://marketplace.zoom.us/docs/api-reference/zoom-api/cloud-recording/recordingslist, if you don't include the from parameter in the REST call you get a default of yesterday. I wanted more like a week, so I tried this:
from
recordings_response = self.zoom_client.recording.list(user_id=user_id, mc="false", page_size=30, trash_type="meeting_recordings", from="2020-01-01")
which obviously doesn't work. Attempting to use from_ instead also did not work. This does, at the cost of legibility
from_
recordings_response = self.zoom_client.recording.list(user_id=user_id, mc="false", page_size=30, trash_type="meeting_recordings", **{"from": "2020-01-01"})
Resolution: Bake in from_ support, or some other kind of parameter renaming.
The text was updated successfully, but these errors were encountered:
for future readers, this also works and could appear pretty conventional (though yes, this seems like an odd thing to have no guidance on:
options = { 'user_id': user_id, 'mc': 'false', 'page_size': 30, 'trash_type': 'meeting_recordings', 'from': '2020-01-01', } recordings_response = self.zoom_client.recording.list(**options)
Sorry, something went wrong.
No branches or pull requests
Per https://marketplace.zoom.us/docs/api-reference/zoom-api/cloud-recording/recordingslist, if you don't include the
from
parameter in the REST call you get a default of yesterday. I wanted more like a week, so I tried this:recordings_response = self.zoom_client.recording.list(user_id=user_id, mc="false", page_size=30, trash_type="meeting_recordings", from="2020-01-01")
which obviously doesn't work. Attempting to use
from_
instead also did not work. This does, at the cost of legibilityrecordings_response = self.zoom_client.recording.list(user_id=user_id, mc="false", page_size=30, trash_type="meeting_recordings", **{"from": "2020-01-01"})
Resolution: Bake in
from_
support, or some other kind of parameter renaming.The text was updated successfully, but these errors were encountered: