Cmdlets for Twilio

Build 24.0.9060

Remove-Twilio Cmdlet

Parameters   Output Objects  

Deletes Twilio data.

Syntax

Remove-Twilio [parameters]

Remarks

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

$conn = Connect-Twilio -AccountSid 'MyAccountSid' -AuthToken 'MyAuthToken'
Remove-Twilio -Connection $conn -Table "Applications" -Id "AP5ddf534702934bd3a446d293e8cdeb1f"
The Where parameter can also be used to specify the primary key:
Remove-Twilio -Connection $conn -Table "exTablePowershell;" -Where "Sid = AP5ddf534702934bd3a446d293e8cdeb1f"
The primary key can also be passed to the cmdlet along the pipeline:
Select-Twilio -Connection $conn -Table Applications -Where "Sid = 'AP5ddf534702934bd3a446d293e8cdeb1f'" | Remove-Twilio

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