Unauthorized Access Issue for Invited Participants in Private Zoom Meeting

I attempted to create a meeting that should only be accessible to invited participants using the following payload:

{
    "agenda": "My Meeting", 
    "duration": 120,
    "settings": {
        "meeting_authentication": true,
        "meeting_invitees": [
            { "email": "email@example.com" }, 
            { "email": "email@example.com" }
            ...
        ],
        "private_meeting": true,
        "internal_meeting": true
    },
    "start_time": "2024-10-21T16:13:00",
    "timezone": "America/Sao_Paulo",
    "type": 2
}

However, after testing, I found that any user with the meeting link, once authenticated, can still access the meeting, even if they are not listed among the invited participants.

Can someone assist in resolving this issue, ensuring that only the specified invitees have access to the meeting?