ZoomNet icon indicating copy to clipboard operation
ZoomNet copied to clipboard

Undocumented meeting security settings

Open Jericho opened this issue 7 months ago • 0 comments

When retrieving the security settings for a location or for a room, the JSON payload in the response contains the following snippet (notice there are 7 values):

"meeting_security":
{
    "auto_security":true,
    "waiting_room":true,
    "waiting_room_settings":{},
    "meeting_password":true,
    "require_password_for_scheduled_meeting":true,
    "rmi_password":false,
    "phone_password":true
}

However, the documentation says you should expect the following 3 settings: encryption_type, end_to_end_encrypted_meetings and auto_security as you can see here:

Image

Documentation even provides a sample JSON that looks like this:

  "meeting_security": {
    "encryption_type": "e2ee",
    "end_to_end_encrypted_meetings": true,
    "auto_security": true
  },

There seems to be a disconnect between what the API returns and what the documentation says.

Jericho avatar May 29 '25 01:05 Jericho