RE: /docs/api/events/#tag/events/get/zoom_events/events
the following is confirmed
1 has sufficient admin permission
2 has required oauth api scopes
via. python requests
params = { ‘event_status_type’: ‘past’ }
response = requests.get(f"{base}/zoom_events/events", headers=zoomauth.headers, params=params) all_events = response.json()
print(all_events)
response.status_code == 200
but no events returned in response.json()