Remove-ZohoCRM Cmdlet
Deletes Zoho CRM data.
Syntax
Remove-ZohoCRM [parameters]
Remarks
The Remove-ZohoCRM cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Zoho CRM data.
$conn = Connect-ZohoCRM Remove-ZohoCRM -Connection $conn -Table "Accounts" -Id "1"The Where parameter can also be used to specify the primary key:
Remove-ZohoCRM -Connection $conn -Table "exTablePowershell;" -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'" | Remove-ZohoCRM