Remove-Basecamp Cmdlet
Deletes Basecamp data.
Syntax
Remove-Basecamp [parameters]
Remarks
The Remove-Basecamp cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Basecamp data.
$conn = Connect-Basecamp -AccountId '1234567' -ProjectId 'abcd1234' -Schema 'V3' Remove-Basecamp -Connection $conn -Table "Projects" -Id "S"The Where parameter can also be used to specify the primary key:
Remove-Basecamp -Connection $conn -Table "exTablePowershell;" -Where "Id = S"The primary key can also be passed to the cmdlet along the pipeline:
Select-Basecamp -Connection $conn -Table Projects -Where "Id = 'MyId'" | Remove-Basecamp