Remove-QBOnline Cmdlet
Deletes QuickBooks Online data.
Syntax
Remove-QBOnline [parameters]
Remarks
The Remove-QBOnline cmdlet allows you to use a syntax similar to SQL DELETE statements to delete QuickBooks Online data.
$conn = Connect-QBOnline Remove-QBOnline -Connection $conn -Table "Customers" -Id "1"The Where parameter can also be used to specify the primary key:
Remove-QBOnline -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"The primary key can also be passed to the cmdlet along the pipeline:
Select-QBOnline -Connection $conn -Table Customers -Where "GivenName = 'Cook, Brian'" | Remove-QBOnline