Jakub Szlaur
Jakub Szlaur

Reputation: 2132

How to send messages to individual participants in a zoom meeting?

How would I send messages to individual participants in a Zoom meeting using Python?

Did I overlook something? Is there any way to do this?


Edit:

I tried using Selenium but there are bunch of Captchas (as suggested in the comment by @piertoni) and password in the way. So I would like to avoid this solution.

Upvotes: 1

Views: 1224

Answers (1)

Michael Lee
Michael Lee

Reputation: 630

You cannot do this easily. Here's a recent thread that says it's not on the API roadmap. Even with browser-based automation, you have seen that Zoom has anti-automation tools in place to prevent spam. GUI automation as suggested in the comments would likely work.

If you have API access to the meeting, a Business account or higher, and want to do GUI automation, you can use this route to get meeting participants.

Upvotes: 2

Related Questions