Cmdlets for Zoho CRM

Build 24.0.9060

Remove-ZohoCRM Cmdlet

Parameters   Output Objects  

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

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9060