Zoom Events and Webinars
cancel
Showing results for 
Search instead for 
Did you mean: 
Weekly Leaderboard

What are Zoom Events and Webinars?

Market and host interactive experiences with the Zoom Events all-in-one virtual event platform or host engaging webinars with Zoom Webinars. Explore the Zoom Community's Recent Activity below to join the Events and Webinars conversation and connect with other members. If you're still looking for support, browse our Zoom Events and Webinars support articles or start a new discussion below!

Recent Activity

Gruppi in riunione Zoom

Buongiorno, erogo corsi di formazione tramite zoom, invio il link di partecipazione ai clienti, il problema è che il corso viene acquistato da un cliente ma il link lo passa ai colleghi e io non ho modo di verificare se c'è qualcuno che partecipa gra... Show more

Buongiorno, erogo corsi di formazione tramite zoom, invio il link di partecipazione ai clienti, il problema è che il corso viene acquistato da un cliente ma il link lo passa ai colleghi e io non ho modo di verificare se c'è qualcuno che partecipa gratis al mio corso. Come posso risolvere? Grazie mille


Show less

video & audio

I want to share a video during a webinar. I want participants to hear the sound of the video and not the sound of my microphone. How do I proceed ? Thanks

reply-icon Latest Reply - 

Can't hear one participant among all

During meetings hosted by me I can hear all participants except one. She can hear me, the other participants can hear her as her microphone is turned on, It's only me who cannot hear her. This is not happening at every meeting but quite often. Obviou... Show more

During meetings hosted by me I can hear all participants except one. She can hear me, the other participants can hear her as her microphone is turned on, It's only me who cannot hear her. This is not happening at every meeting but quite often. Obviously my audio works as I host many meetings a day and I have this problem with just one participant. Does anybody have any suggestions?

 

 


Show less

reply-icon Latest Reply - 

Registered people could not join zoom webinar

Hi everyone! Recently I had a zoom webinar and many registered people could not enter. I got various "error messages" from different participants.Some mentioned the host already and another meeting, others they needed a password or a key. I had disab... Show more

Hi everyone!

 

Recently I had a zoom webinar and many registered people could not enter.

 

I got various "error messages" from different participants.

Some mentioned the host already and another meeting, others they needed a password or a key.

 

I had disables waiting room and I have checked all outgoing and invitation emails had the SAME zoom link.

 

One of my participants was early and satrted the meeting 5 minutes early. I hopped on that link, maybe that was wrong? On the other hand, I had others that had no problem joining.

 

Have you had this before?

 

What would be the best seetings for me to choose if I want to have as little obstacles as possible for my participants to join?

 

Thank you kindly

Maurice Jenkens


Show less

reply-icon Latest Reply - 

Webinar didn't send reminder email

Hi, I just held a webinar yesterday and Zoom didn't send out the 1hr before reminder. I had it set and it's always worked in the past.  Anyone else have this issue before? And is there a workaround?

reply-icon Latest Reply - 

Zoom Simulive Webinar NOT WORKING

I have been hosting multiple recurring webinars with Zoom (and an integration with Skilljar) for several months using the Simulive webinar type. Starting last week, my Simulive webinars are no longer working. I use the Zoom webinar link to join the w... Show more

I have been hosting multiple recurring webinars with Zoom (and an integration with Skilljar) for several months using the Simulive webinar type. Starting last week, my Simulive webinars are no longer working. I use the Zoom webinar link to join the webinar, but when I join the video and audio do not play. It is just a blank screen. The chat features work so I know the screen is not frozen. I had several webinar participants tell me they are also not able to see or hear the webinar. The more I test this issue the more it seems to happen. At this point I'm extremely frustrated that my customers are not able to access these webinars. Support has not be helpful so far - has anyone else experienced this issue and if so how were you able to resolve it? 


Show less

reply-icon Latest Reply - 

How to add or delete polls from the “Survey library"?

After creating poll questions in the survey library, how can I add it in a webinar? Can anyone please share the steps?Also, can I delete existing poll questions for a specific webinar but retain these questions in the library for further usage? Curre... Show more

After creating poll questions in the survey library, how can I add it in a webinar? Can anyone please share the steps?

Also, can I delete existing poll questions for a specific webinar but retain these questions in the library for further usage? Currently, it looks like if I delete the poll question, it gets delete from the library itself. 


Show less

Participants joined as Panelists

During the webinar, our system encountered a bug wherein it failed to capture the email addresses of the participants. Compounding this issue, several individuals inadvertently joined the webinar as panelists. In an attempt to rectify this, we urgent... Show more

During the webinar, our system encountered a bug wherein it failed to capture the email addresses of the participants. Compounding this issue, several individuals inadvertently joined the webinar as panelists. In an attempt to rectify this, we urgently adjusted their roles to attendees, unintentionally causing them to exit the call. Consequently, the system did not register the email IDs of these participants, creating a data discrepancy.
As a result of this technical glitch, we are now facing challenges in attributing leads and valuable information to the respective attendees. Moreover, the situation was further complicated as multiple participants shared identical names upon joining the webinar.
Given the importance of accurate attendee data for our post-webinar analysis and follow-ups, I kindly request your prompt assistance in addressing this issue. It is critical for us to retrieve and associate the missing email IDs with their respective participants to ensure the integrity of our records and the success of our webinar initiatives.


Show less

Help me

hello, is it possible to limit the Zoom webinar account from 5000 to only 2500 participants who can join? How to?

reply-icon Latest Reply - 

Account does not enabled REST API

Hello,I am contacting you because I get a 400 status response from you API, and I cannot figure out how to fix this issue.Here is the whole process:- My application is hosted on my localhost- With a Zoom One Pro account, I created on the marketplace ... Show more

Hello,

I am contacting you because I get a 400 status response from you API, and I cannot figure out how to fix this issue.

Here is the whole process:

- My application is hosted on my localhost

- With a Zoom One Pro account, I created on the marketplace a Server-to-Server OAuth application (with well-configured scopes)

- Im my application, I am requesting a token from the OAuth application, which works just fine. 

- I then use this token to POST a request to "https://api.zoom.us/v2/users/me/webinars", but get a 400 status code response from your API, with the following payload:

{
"code": 200,
"message: "Account does not enabled REST API."
}

Here is how I am performing my test request:

$response = Http::withToken($this->token)->post("https://api.zoom.us/v2/users/me/webinars", [
'agenda' => Str::uuid(),
'schedule_for' => '***********',
'start_time' => now()->addWeek()->format('Y-m-d\TH:i:s\Z')
]);

Token obtained as follow:

/**
* Request's API access token if needed.
*
* @return void
*/
private function authenticate(): void
{
if ($this->token && $this->tokenValidUntil->isFuture()) {
return;
}

$response = Http::asForm()->post('https://zoom.us/oauth/token', [
'client_id' => config('zoom.client.id'),
'client_secret' => config('zoom.client.secret'),
'grant_type' => 'client_credentials',
]);

$this->token = $response->json('access_token');

$this->tokenValidUntil = now()->addSeconds($response->json('expires_in'));
}

 

Can you please help me figure out what is going wrong ?

Regards,


Show less

reply-icon Latest Reply -