Hi! I have the same problem as @aravinda.yennam and I can’t update any meeting and not only auto_recording but any “settings”.
Current meeting data:
{
"id": 84661838844,
"type": 2,
"uuid": "",
"topic": "Meeting test 01",
"agenda": "",
"status": "waiting",
"host_id": "",
"duration": 45,
"join_url": "https://us02web.zoom.us/j/",
"settings": {
"audio": "both",
"use_pmi": false,
"jbh_time": 0,
"watermark": false,
"cn_meeting": false,
"focus_mode": false,
"host_video": false,
"in_meeting": false,
"waiting_room": true,
"approval_type": 1,
"breakout_room": {
"enable": false
},
"enforce_login": false,
"auto_recording": "none",
"device_testing": false,
"encryption_type": "enhanced_encryption",
"mute_upon_entry": false,
"private_meeting": true,
"join_before_host": false,
"alternative_hosts": "",
"participant_video": false,
"show_share_button": false,
"close_registration": false,
"email_notification": true,
"enforce_login_domains": "",
"host_save_video_order": false,
"allow_multiple_devices": true,
"global_dial_in_numbers": [
{
"type": "toll",
"number": "+34 ",
"country": "ES",
"country_name": "Spain"
},
{
"type": "toll",
"number": "+34 ",
"country": "ES",
"country_name": "Spain"
},
{
"type": "toll",
"number": "+34 ",
"country": "ES",
"country_name": "Spain"
}
],
"meeting_authentication": false,
"global_dial_in_countries": [
"ES"
],
"enable_dedicated_group_chat": false,
"alternative_host_update_polls": false,
"registrants_confirmation_email": true,
"registrants_email_notification": true,
"alternative_hosts_email_notification": true,
"approved_or_denied_countries_or_regions": {
"enable": false
},
"request_permission_to_unmute_participants": false
},
"timezone": "Europe/Madrid",
"start_url": "https://us02web.zoom.us/s/",
"created_at": "2023-02-24T10:28:05Z",
"host_email": "eyusa@esveu.es",
"start_time": "2023-02-26T10:26:00Z",
"assistant_id": "",
"pre_schedule": false,
"registration_url": "https://us02web.zoom.us/meeting/register/"
}
Patch payload:
{
"topic": "Meeting test 01",
"start_time": "2023-02-26 11:26",
"duration": 45,
"settings": {
"join_before_host": true,
"waiting_room": false,
"auto_recording": "cloud"
}
}
Meeting data after PATCH and GET meeting info:
{
"success": true,
"data": {
"uuid": "l",
"id": 84661838844,
"host_id": "",
"host_email": "",
"assistant_id": "",
"topic": "Meeting test 01",
"type": 2,
"status": "waiting",
"start_time": "2023-02-26T10:26:00Z",
"duration": 45,
"timezone": "Europe/Madrid",
"agenda": "",
"created_at": "2023-02-24T10:28:05Z",
"start_url": "https://us02web.zoom.us/s/",
"join_url": "https://us02web.zoom.us/j/",
"registration_url": "https://us02web.zoom.us/meeting/register/",
"settings": {
"host_video": false,
"participant_video": false,
"cn_meeting": false,
"in_meeting": false,
"join_before_host": false,
"jbh_time": 0,
"mute_upon_entry": false,
"watermark": false,
"use_pmi": false,
"approval_type": 1,
"audio": "both",
"auto_recording": "none",
"enforce_login": false,
"enforce_login_domains": "",
"alternative_hosts": "",
"alternative_host_update_polls": false,
"close_registration": false,
"show_share_button": false,
"allow_multiple_devices": true,
"registrants_confirmation_email": true,
"waiting_room": true,
"request_permission_to_unmute_participants": false,
"global_dial_in_countries": [
"ES"
],
"global_dial_in_numbers": [
{
"country_name": "Spain",
"number": "+34 ",
"type": "toll",
"country": "ES"
},
{
"country_name": "Spain",
"number": "+34 ",
"type": "toll",
"country": "ES"
},
{
"country_name": "Spain",
"number": "+34 ",
"type": "toll",
"country": "ES"
}
],
"registrants_email_notification": true,
"meeting_authentication": false,
"encryption_type": "enhanced_encryption",
"approved_or_denied_countries_or_regions": {
"enable": false
},
"breakout_room": {
"enable": false
},
"alternative_hosts_email_notification": true,
"device_testing": false,
"focus_mode": false,
"enable_dedicated_group_chat": false,
"private_meeting": true,
"email_notification": true,
"host_save_video_order": false
},
"pre_schedule": false
}
}