Closed ravatsinh closed 1 year ago
Can you please give me example how we can update existing record value
i can post to odata than record is got created but not getting how to update an existing records
You can use the patch method for this:
patch
Example:
$oDataClient->patch( 'contacts(' . $contactUuid . ')', [ 'lastname' => 'Dummy' ] );
Can you please give me example how we can update existing record value
i can post to odata than record is got created but not getting how to update an existing records