Host and participant video enable issue

Description
We are creating a zoom meeting from zoom API, while creating a zoom meeting we provide the option to enable host or participant video while joining the meeting, but this functionality is not working.

We are first calling API to create a zoom meeting for us, then we update the meeting with permission options. This technique is working for other option like waiting room enabled mute participants but not for enabling host or participant video. Below I am sharing the request and response for the same.

API Endpoint/s?

While creating request
[json] => Array
(
[userId] => xGbO-lmyTaSoAIG71slstA
[topic] => 27 june 2022
[type] => 2
[start_time] => 2022-06-27T08:00:00Z
[duration] => 120
[timezone] => Asia/Calcutta
[password] => Qsltz34X
[agenda] => description
[settings] => Array
(
[host_video] =>
[waiting_room] => 1
[auto_recording] =>
[mute_upon_entry] => 1
[join_before_host] => 1
[participant_video] =>
)

    )

Resonse we are getting :
[data] => stdClass Object
(
[uuid] => eEAtsClyRdedIx6XRqp5Zg==
[id] => 92043740438
[host_id] => xGbO-lmyTaSoAIG71slstA
[host_email] => charles@xyzapp.com
[topic] => 27 june 2022
[type] => 2
[status] => waiting
[start_time] => 2022-06-27T08:00:00Z
[duration] => 120
[timezone] => Asia/Calcutta
[agenda] => description
[created_at] => 2022-06-27T07:51:38Z
[start_url] =>
[join_url] => Launch Meeting - Zoom
[password] => Qsltz34X
[h323_password] => 77076685
[pstn_password] => 77076685
[encrypted_password] => ZHVrNDIvbFlVbkVlUkNNeUt6cXMzZz09
[settings] => stdClass Object
(
[host_video] =>
[participant_video] =>
[cn_meeting] =>
[in_meeting] =>
[join_before_host] => 1
[jbh_time] => 0
[mute_upon_entry] => 1
[watermark] =>
[use_pmi] =>
[approval_type] => 2
[audio] => both
[auto_recording] => none
[enforce_login] =>
[enforce_login_domains] =>
[alternative_hosts] =>
[alternative_host_update_polls] =>
[close_registration] =>
[show_share_button] =>
[allow_multiple_devices] =>
[registrants_confirmation_email] => 1
[waiting_room] => 1
[request_permission_to_unmute_participants] =>
[global_dial_in_countries] => Array
(
[0] => US
)

                        [global_dial_in_numbers] => Array
                            (
                                [0] => stdClass Object
                                    (
                                        [country_name] => US
                                        [city] => New York
                                        [number] => +1 6465588656
                                        [type] => toll
                                        [country] => US
                                    )

                                [1] => stdClass Object
                                    (
                                        [country_name] => US
                                        [city] => San Jose
                                        [number] => +1 6699009128
                                        [type] => toll
                                        [country] => US
                                    )

                                [2] => stdClass Object
                                    (
                                        [country_name] => US
                                        [city] => Tacoma
                                        [number] => +1 2532158782
                                        [type] => toll
                                        [country] => US
                                    )

                                [3] => stdClass Object
                                    (
                                        [country_name] => US
                                        [city] => Washington DC
                                        [number] => +1 3017158592
                                        [type] => toll
                                        [country] => US
                                    )

                                [4] => stdClass Object
                                    (
                                        [country_name] => US
                                        [city] => Chicago
                                        [number] => +1 3126266799
                                        [type] => toll
                                        [country] => US
                                    )

                                [5] => stdClass Object
                                    (
                                        [country_name] => US
                                        [city] => Houston
                                        [number] => +1 3462487799
                                        [type] => toll
                                        [country] => US
                                    )

                            )

                        [registrants_email_notification] => 1
                        [meeting_authentication] => 
                        [encryption_type] => enhanced_encryption
                        [approved_or_denied_countries_or_regions] => stdClass Object
                            (
                                [enable] => 
                            )

                        [breakout_room] => stdClass Object
                            (
                                [enable] => 
                            )

                        [alternative_hosts_email_notification] => 1
                        [device_testing] => 
                        [focus_mode] => 
                        [private_meeting] => 
                        [email_notification] => 1
                        [host_save_video_order] => 
                    )

                [pre_schedule] => 
            )

Updating request permission request :
Array
(
[json] => Array
(
[meetingId] => 99701452220
[topic] => june 27
[start_time] => 2022-06-27T08:15:00Z
[duration] => 105
[timezone] => Asia/Calcutta
[agenda] => description
[settings] => Array
(
[host_video] => 1
[participant_video] => 1
[auto_recording] => cloud
[mute_upon_entry] => 1
[waiting_room] => 1
[join_before_host] =>
)

    )

)


This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.