
Stripe Delete
CertifiedDelete a Stripe customer
Stripe Delete
Certified
Delete a Stripe customer
Soft-deletes a Stripe customer by ID. Stripe retains the record but marks it deleted; output includes the deleted flag and raw payload.
yaml
type: io.kestra.plugin.stripe.customer.DeleteExamples
Delete a customer by ID
yaml
id: delete_customer
namespace: company.team
tasks:
- id: delete_customer
type: io.kestra.plugin.stripe.customer.Delete
apiKey: "{{ secret('STRIPE_API_KEY') }}"
customerId: "cus_123456789"
Properties
apiKey *Requiredstring
Stripe API Key
Secret key for authenticating with Stripe. Starts with 'sk_' for live/test keys.
customerId *Requiredstring
Customer ID to delete
Target customer identifier; operation is a Stripe soft delete
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
customerData object
Raw customer payload
Full customer object returned by Stripe after deletion
customerId string
Deleted customer ID
deleted boolean
Soft delete flag
True when Stripe marks the customer as deleted