Update-ZohoCRM Cmdlet
Updates Zoho CRM data.
Syntax
Update-ZohoCRM [parameters]
Remarks
The Update-ZohoCRM cmdlet allows you to use a syntax similar to SQL UPDATE statements to update Zoho CRM data.
$conn = Connect-ZohoCRM Update-ZohoCRM -Connection $conn -Table "Accounts" -Columns @("AccountNumber") -Values @("4500") -Id "1"The Where parameter can also be used to specify the primary key of the table:
Update-ZohoCRM -Connection $conn -Table "Accounts" -Columns @("AccountNumber") -Values @("4500") -Where "Id = '1'"The primary key can also be passed to the cmdlet along the pipeline:
Select-ZohoCRM -Connection $conn -Table Accounts -Where "Industry = 'Data/Telecom OEM'" | Update-ZohoCRM -Columns @("Industry") -Values @("Data/Telecom OEM 2")