Remove-ZohoCRM Cmdlet
Zoho CRM データを削除します。
Syntax
Remove-ZohoCRM [parameters]
Remarks
Remove-ZohoCRM コマンドレットを使って、SQL DELETE ステートメントに似た構文を用いてZoho CRM データを削除できます。
$conn = Connect-ZohoCRM Remove-ZohoCRM -Connection $conn -Table "Accounts" -Id "1"Where パラメータは主キーを指定するためにも使われます。
Remove-ZohoCRM -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-ZohoCRM -Connection $conn -Table Accounts -Where "Industry = 'Data/Telecom OEM'" | Remove-ZohoCRM