79539937

Date: 2025-03-27 20:17:04
Score: 1
Natty:
Report link

Now that the Zoom JWT app type is end of life, to use this library, you should use the Zoom Server to Server app type. Make sure to add your Zoom Account ID as a ZoomClient param as well.

# Documentation Sample Code

import json
from zoomus import ZoomClient

client = ZoomClient('ZOOM_CLIENT_ID', 'ZOOM_CLIENT_SECRET', 'ZOOM_ACCOUNT_ID')

user_list_response = client.user.list()
user_list = json.loads(user_list_response.content)

for user in user_list['users']:
    user_id = user['id']
    print(json.loads(client.meeting.list(user_id=user_id).content))
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: tommygaessler