I’m using the API to create meetings and can’t work out how to remove the need for the attendee to ‘Register’
This is my end point - v2/users/me/meetings
This is my data -
{
“topic”: “1. NAME : Test Event”,
“type”: 2,
“start_time”: “2. Result : 2025-05-01T14:00:00+10:00”,
“duration”: 180,
“timezone”: “Australia/Brisbane”,
“settings”: {
“host_video”: true,
“participant_video”: true,
“join_before_host”: true,
“mute_upon_entry”: true,
“waiting_room”: false,
“approval_type”: 0,
“meeting_authentication”: true,
“auto_recording”: “cloud”,
“audio”: “voip”,
“alternative_hosts”: “meetup@developernetwork.com.au”,
“in_meeting”: false,
“close_registration”: true,
“registrants_email_notification”: false,
“registrants_confirmation_email”: false,
“registration_type”: 0,
“use_pmi”: false,
“enforce_login”: false,
“authentication_option”: “”,
“approved_or_denied_countries_or_regions”: {
“enable”: false
}
}
}
The above is working to create the event but the ‘Registration Required’ checkbox is ticked. How can I remove that so the attendees don’t need to register?