Track participation in meetings
Can I somehow track if and when and for how long I participated in a Zoom meeting that is not hosted by me?
Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI CompanionUser groups are unique spaces where community members can collaborate, network, and exchange knowledge on similar interests and expertise.
Help & Resources is your place to discover helpful Zoom support resources, browse Zoom Community how-to documentation, and stay updated on community announcements.
The Events page is your destination for upcoming webinars, platform training sessions, targeted user events, and more. Stay updated on opportunities to enhance your skills and connect with fellow Zoom users.
Zoom Meetings are a simplified video conferencing solution for an optimized virtual meeting experience. Explore the Zoom Community's Recent Activity below to join the Meetings conversation and connect with other members. If you're still looking for support, browse our Zoom Meetings support articles or start a new discussion below!
Can I somehow track if and when and for how long I participated in a Zoom meeting that is not hosted by me?
I have been using a Surface Pro 3 for several years with no issues. This evening I started having issues with audio after the mentioned update. I use a set of Beats Wireless Studio 3 headphones. The are used as a wired headphone. After this update, the headphones do not have any audio. If you check out the operating system (Win 10 Pro x64), everything is perfect. IF you have the Zoom application shut down, headphones work properly. If you open the Zoom application, you only get audio from the speakers of the Surface Pro 3. No matter if you have the headphones plugged in or not. I have checked the usual things, including battery charge levels. There is obviously something that has changed with the latest update. I use this unit, at least twice a week for remote meetings. The use of the headphones, is required, due to my spouse's hearing issues. I will almost guarantee that other users are having these issues. Thank You for your assistance, Wallace
Show less
I've integrated the web sdk version 2.18.2 through cdn link. The meeting is started but when I press the join button, "joining meeting" appears on screen but the meeting is not joined. The following message appears in browser console:
previewVal zm_previewVal 7
zoom-meeting-2.18.2.min.js:2 join invalid parameter !!!
Please advise
Show less
Zoom switches the order of the recording buttons depending on whether I am sharing my screen or not. Sometimes, like yesterday, I hit the button to record locally rather than "Record to the Cloud". But sharing recordings is easier if they are stored by Zoom. Can I upload my local recording to have it stored and shared by the Zoom app?
Show less
I've been looking through the discussions regarding alphabetical vs chronological listings and I am not seeing any answers. I'd like some help in changing my recurring meetings that do not have a specific date and time to alphabetical , everything is in some random order currently. Thank you.
Show less
When I first signed up for Zoom, all I had to do was set my download path and a new meeting folder would be created and all my files (.mp4, .txt, etc.) would be put in that folder. For example, if my download path was "C:\Download" and my recurring meeting was called "Unstated Meeting", a new folder would be created in "C:\Download" called "{Date and Time stamp} Unstated Meeting" and my files would be saved there. It worked perfectly.
Recently, like in the last several months, I get prompted to choose a download path after each meeting. The new folder is STILL being created, but all the files are ALSO added to "C:\Download". I have checked, the files are exactly the same. What do I need to do to go back to just working like it was before?
Show less
Hello! Device: Notebook / Windows Thank you very much,
I have had the following problem for a few days now:
I have activated a waiting room, but I do not get a message when a participant enters the waiting room.
Does anyone know the problem?
Zoom Version: 5.17.1 (28914)
Sandra
Show less
flutter_zoom_sdk: ^1.1.0+4 initilize zoom sdk in flutter using code joinMeeting(BuildContext context) { if (Platform.isAndroid) return result; var zoom = ZoomView(); }
bool _isMeetingEnded(String status) {
var result = false;
result = status == "MEETING_STATUS_DISCONNECTING" || status == "MEETING_STATUS_FAILED";
else
result = status == "MEETING_STATUS_IDLE";
}
if(meetingNumber!.isNotEmpty && meetingPassword!.isNotEmpty){
ZoomOptions zoomOptions = new ZoomOptions(
domain: "zoom.us",
appKey: appKey,
appSecret: appSecret,
);
var meetingOptions = new ZoomMeetingOptions(
userId: 'username', //pass username for join meeting only --- Any name eg:- EVILRATT.
meetingId: meetingNumber, //pass meeting id for join meeting only
meetingPassword: meetingPassword, //pass meeting password for join meeting only
disableDialIn: "true",
disableDrive: "true",
disableInvite: "true",
disableShare: "true",
disableTitlebar: "false",
viewOptions: "true",
noAudio: "false",
noDisconnectAudio: "false"
);
zoom.initZoom(zoomOptions).then((results) {
if(results[0] == 0) {
zoom.onMeetingStatus().listen((status) {
print("[Meeting Status Stream] : " + status[0] + " - " + status[1]);
if (_isMeetingEnded(status[0])) {
print("[Meeting Status] :- Ended");
timer?.cancel();
}
});
print("listen on event channel");
zoom.joinMeeting(meetingOptions).then((joinMeetingResult) {
timer = Timer.periodic(new Duration(seconds: 2), (timer) {
zoom.meetingStatus(meetingOptions.meetingId!)
.then((status) {
print("[Meeting Status Polling] : " + status[0] + " - " + status[1]);
});
});
});
}
}).catchError((error) {
print("[Error Generated] : " + error);
});
}else{
if(meetingNumber!.isEmpty){
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text("Enter a valid meeting id to continue."),
));
}
else if(meetingPassword!.isEmpty){
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text("Enter a meeting password to start."),
));
}
}
Show less

