Cannot update CO with REST - PATCH
Content
I have the following code below , and i am unable to update the contact with ID=1, what am i doing wrong?
Version
LatestCode Snippet
<?php $update = array( 'Email' => 'Norman' ); // make the POST fields $data_string = json_encode($update); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,"https://user:[email protected]/services/rest/connect/v1.3/CO.Emp/1"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PATCH"); curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_HTTPHEADER, array(
0