Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions zoomus/components/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ def get_user_report(self, **kwargs):
"/report/users/{}/meetings".format(kwargs.get("user_id")), params=kwargs
)

def get_meeting_detail_report(self, **kwargs):
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for this addition! Can you please add a test case for it so that we can ensure that we are maintaining test coverage?

Thank you for your time and effort!

"""
/report/meetings/{meetingId}/participants
"""
util.require_keys(kwargs, ["meeting_id"])
return self.get_request(
"/report/meetings/{}/participants".format(kwargs.get("meeting_id")), params=kwargs
)

def get_account_report(self, **kwargs):
util.require_keys(kwargs, ["start_time", "end_time"])
kwargs["from"] = util.date_to_str(kwargs["start_time"])
Expand Down