Remove-TaxJar Cmdlet
Deletes TaxJar data.
Syntax
Remove-TaxJar [parameters]
Remarks
The Remove-TaxJar cmdlet allows you to use a syntax similar to SQL DELETE statements to delete TaxJar data.
$conn = Connect-TaxJar -APIKey "3bb04218ef8t80efdf1739abf7257144" Remove-TaxJar -Connection $conn -Table "Orders" -Id "6"The Where parameter can also be used to specify the primary key:
Remove-TaxJar -Connection $conn -Table "exTablePowershell;" -Where "Id = 6"The primary key can also be passed to the cmdlet along the pipeline:
Select-TaxJar -Connection $conn -Table Orders -Where "TransactionID = '123'" | Remove-TaxJar