Cmdlets for Trello

Build 24.0.9060

Remove-Trello Cmdlet

Parameters   Output Objects  

Deletes Trello data.

Syntax

Remove-Trello [parameters]

Remarks

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

$conn = Connect-Trello -APIKey "myApiKey" -Token="myGeneratedToken"
Remove-Trello -Connection $conn -Table "Cards" -Id "5835594ee009411c6abdbfbd"
The Where parameter can also be used to specify the primary key:
Remove-Trello -Connection $conn -Table "exTablePowershell;" -Where "CardId = 5835594ee009411c6abdbfbd"
The primary key can also be passed to the cmdlet along the pipeline:
Select-Trello -Connection $conn -Table Cards -Where "CardId = '614060b2c37da423f30dc7d6'" | Remove-Trello

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