action stripe_delete_customers_customer { label: "DeleteCustomersCustomer" description: "
Permanently deletes a customer. It cannot be undone. Also immediately cancels any active subscriptions on the customer.
" provider: stripe method: DELETE path: "/v1/customers/{customer}" encoding: form input: { type: "object" properties: { customer: { type: "string" } } required: ["customer"] additionalProperties: false } output: { type: "object" required: ["deleted", "id", "object"] properties: { deleted: { type: "boolean" description: "Always true for a deleted object" enum: [true] } id: { type: "string" description: "Unique identifier for the object." } object: { type: "string" description: "String representing the object's type. Objects of the same type share the same value." enum: ["customer"] } } } }