Update user setting Response returned empty

Description
Update user setting Response returned empty.

Error
empty error

app type OAuth

$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => “https://api.zoom.us/v2/users/JXppkRS9Q6GHfZhSHV6ajA/settings”,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => “”,
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => “PATCH”,
CURLOPT_POSTFIELDS => “{“recording”:{“local_recording”:false,“cloud_recording”:true,“record_speaker_view”:true,“record_gallery_view”:true,“record_audio_file”:true,“save_chat_text”:true,“show_timestamp”:false,“recording_audio_transcript”:false,“auto_recording”:“cloud”,“auto_delete_cmr”:false}}”,
CURLOPT_HTTPHEADER => array(
"authorization: Bearer " . env(‘ZOOM’),
“content-type: application/json”
),
));

        $response = curl_exec($curl);
        $err = curl_error($curl);

        curl_close($curl);

        if ($err) {
         "cURL Error #:" . $err;
          echo $err;
        } else {
         dd($response);
        }

Hey @dash.rock.dash,

Per the docs, the Update User endpoint returns an empty response when successful.

Thanks,
Tommy

i know A successful response (204) but use not updated and user setting not updated when i use get user setting but response successful but not updated

i set auto_recording":“cloud”
but still none when getting user info

Hey @dash.rock.dash,

I could not reproduce the issue. Please try the following request body:

{
  "recording": {
    "auto_recording": "cloud"
  }
}

And then check your settings here: https://zoom.us/profile/setting?tab=recording

Thanks,
Tommy