Cmdlets for Sage Business Cloud Accounting

Build 24.0.9060

Remove-SageBCAccounting Cmdlet

Parameters   Output Objects  

Deletes Sage Business Cloud Accounting data.

Syntax

Remove-SageBCAccounting [parameters]

Remarks

The Remove-SageBCAccounting cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Sage Business Cloud Accounting data.

$conn = Connect-SageBCAccounting -InitiateOAuth 'GETANDREFRESH'
Remove-SageBCAccounting -Connection $conn -Table "SampleTable_1" -Id "6"
The Where parameter can also be used to specify the primary key:
Remove-SageBCAccounting -Connection $conn -Table "exTablePowershell;" -Where "Id = 6"
The primary key can also be passed to the cmdlet along the pipeline:
Select-SageBCAccounting -Connection $conn -Table SampleTable_1 -Where "Column2 = 'Bob'" | Remove-SageBCAccounting

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