Cmdlets for QuickBooks Online

Build 24.0.9060

Remove-QBOnline Cmdlet

Parameters   Output Objects  

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

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