Using meeting and webinar zoom reports previously we are getting email field data but now it's giving empty field data

using meeting and webinar zoom reports previously we are getting email field data but now it’s giving empty field data

1 Like

It looks like all Personally Identifiable Information (PII) except IP address had been removed from reports, including live information via the https://api.zoom.us/v2/metrics/meetings/$meeting_id/participants endpoint.

We use this information for dividing our students into small groups. All of our current user management is based on it. Students regularly log into meetings with a different account by mistake. Having the email address allows us to re-associate the student and send them to the correct group, using a web interface I designed.

The https://api.zoom.us/v2/meetings/$meeting_id PATCH endpoint requires the email address for the account in order to assign the user to a group.

Since it looks like removing the email address information is a permanent change (required by all the privacy rules like GDPR), can the API for assigning rooms be modified to accept the participant_user_id? Assuming those uniquely identify an account, I could modify my database to use that instead of the email address. This would also be important for uploading a CSV file to pre-assign groups.

Our next class is March 19, 2022, and the thought of not having the email address in the logs, but having the email address be the only identifier that can be used to assign a user to a breakout, is a bit unnerving.

Did you know why this happened? I have been searching and trying all possible way to use email id. we used in our app email as the primary key.