How to limit a meeting to invitees ony?

API Endpoint(s) and/or Zoom API Event(s)
/users/me/meetings

Description
I have setted 3 emails in “meeting_invitees” field, but when someone else not from the “meeting_invitees” list open the link, he gets connected, how is that possible, knowing that I have “meeting_authentication” set to True ?

Error?
The user that do not have his email in the meeting_invitees list, he can’t join even with the passcode

How To Reproduce
Steps to reproduce the behavior:
Request Body

{
      "agenda": name,
      "default_password": false,
      "duration": 120,
      "password": "elios",
      "pre_schedule": false,
      "recurrence": {
        "end_date_time": "2024-03-024T23:59:00Z",
        "type": 1
      },
      "settings": {
        "additional_data_center_regions": [
          "TY"
        ],
        "allow_multiple_devices": true,
        "alternative_hosts": alternative_host, // "prof-a@xxxx.com"
        "alternative_hosts_email_notification": true,
        "approval_type": 2,
        "approved_or_denied_countries_or_regions": {
          "approved_list": [
            "TN"
          ],
          "enable": true,
          "method": "approve"
        },
        "audio": "both",
        "audio_conference_info": "test",
        "auto_recording": "cloud",
        "calendar_type": 1,
        "close_registration": false,
        "contact_name": "Jill Chill",
        "email_notification": true,
        "encryption_type": "enhanced_encryption",
        "focus_mode": true,
        "host_video": false,
        "jbh_time": 0,
        "join_before_host": true,
        "meeting_authentication": true,
        "meeting_invitees": invitees.map(invitee => ({ email: invitee })), // khali.xxxx@gmail.com, ...
        "mute_upon_entry": false,
        "participant_video": false,
        "private_meeting": false,
        "registrants_confirmation_email": false,
        "registrants_email_notification": true,
        "registration_type": 1,
        "show_share_button": true,
        "use_pmi": false,
        "waiting_room": false,
        "watermark": false,
        "host_save_video_order": true,
        "alternative_host_update_polls": true
      },
      "start_time": date, // "2024-03-25T13:00:00Z"
      "timezone": "Africa/Tunis",
      "topic": name,
      "type": 8
    };