Stripe Delete

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.Delete

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

Stripe API Key

Secret key for authenticating with Stripe. Starts with 'sk_' for live/test keys.

Customer ID to delete

Target customer identifier; operation is a Stripe soft delete

Raw customer payload

Full customer object returned by Stripe after deletion

Deleted customer ID

Soft delete flag

True when Stripe marks the customer as deleted