Cmdlets for Avalara

Build 24.0.8963

Remove-Avalara Cmdlet

Parameters   Output Objects  

Deletes Avalara data.

Syntax

Remove-Avalara [parameters]

Remarks

The Remove-Avalara cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Avalara data.

$conn = Connect-Avalara -User "MYUser" -Password "myPassword"
Remove-Avalara -Connection $conn -Table "Transactions" -Id "4000121038642"
The Where parameter can also be used to specify the primary key:
Remove-Avalara -Connection $conn -Table "exTablePowershell;" -Where "Id = 4000121038642"
The primary key can also be passed to the cmdlet along the pipeline:
Select-Avalara -Connection $conn -Table Transactions -Where "Code = '051349'" | Remove-Avalara

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