The URL for the Third Party Survey is being converted to all lowercase

Other people have asked the same question as me below, but since it hasn’t been resolved, I would like to ask the same question again.


When we use endpoint [/meetings/{meetingId}/survey ]

We call api [/meetings/{meetingId}/survey ] with the following PHP program.
The URL for the Third Party Survey is being converted to all lowercase and registered in ZOOM.
"forms.gle/q5ppeHmeDgZuaJr22 " → “forms.gle/q5ppehmedgzuajr22”

{
$params = array(
‘third_party_survey’ => “https://forms.gle/q5ppeHmeDgZuaJr22
);

        $options = array(
            CURLOPT_URL => "https://api.zoom.us/v2/meetings/$meeting_id/survey",
            CURLOPT_HTTPHEADER => array(
                "Content-Type: application/json",
                "Authorization: Bearer $accessToken",
            ),
            CURLOPT_POSTFIELDS => json_encode($params),
            CURLOPT_RETURNTRANSFER => true,
            CURLOPT_ENCODING => '',
            CURLOPT_MAXREDIRS => 10,
            CURLOPT_TIMEOUT => 0,
            CURLOPT_FOLLOWLOCATION => true,
            CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
            CURLOPT_SSL_VERIFYPEER => false,
            CURLOPT_CUSTOMREQUEST => 'PATCH',
        );

        $ch = curl_init();
        curl_setopt_array($ch, $options);
        curl_close($ch);

}

I would like to register capital letters as they are.
Could you please provide a solution?
Thank you.

1 Like