Cmdlets for Stripe

Build 24.0.8963

Remove-Stripe Cmdlet

Parameters   Output Objects  

Deletes Stripe data.

Syntax

Remove-Stripe [parameters]

Remarks

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

$conn = Connect-Stripe -OAuthClientId 'MyClientId' -OAuthClientSecret 'MySecretKey' -CallbackURL 'http://localhost:33333'
Remove-Stripe -Connection $conn -Table "Customers" -Id "123456"
The Where parameter can also be used to specify the primary key:
Remove-Stripe -Connection $conn -Table "exTablePowershell;" -Where "Id = 123456"
The primary key can also be passed to the cmdlet along the pipeline:
Select-Stripe -Connection $conn -Table Customers -Where "Delinquent = 'False'" | Remove-Stripe

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