Remove-ZohoCreator Cmdlet
Deletes Zoho Creator data.
Syntax
Remove-ZohoCreator [parameters]
Remarks
The Remove-ZohoCreator cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Zoho Creator data.
$conn = Connect-ZohoCreator -InitiateOAuth "GETANDREFRESH" Remove-ZohoCreator -Connection $conn -Table "[CData].[Employee Management].Leave_Types" -Id "98891000000010007"The Where parameter can also be used to specify the primary key:
Remove-ZohoCreator -Connection $conn -Table "exTablePowershell;" -Where "Id = 98891000000010007"The primary key can also be passed to the cmdlet along the pipeline:
Select-ZohoCreator -Connection $conn -Table [CData].[Employee Management].Leave_Types -Where "Leave_Type = 'Sick'" | Remove-ZohoCreator