---
title: "Customer: Destroy"
method: DELETE
path: "/customers/{id}"
tags: ["Subscriptions"]
---

# Customer: Destroy

`DELETE /customers/{id}`

Deletes the customer with the given `id`. This complete erases the stored payment details from our database.

## Path parameters

- `id` string, required — A unique 25-character alphanumeric resource identifier.

## Response `200`

200 response

- Customer
  - `id` string, required — A unique 25-character alphanumeric resource identifier.
  - `resource` 'customer', required — Resource type name, always "customer".
  - `email` string, nullable, required — Customer's email address, or null if not provided.
  - `source` object, nullable, required — Saved payment source for this customer, or null if none is saved.
    - `type` string, required — Payment method type of the saved payment source.
    - `brand` string, required — Card brand (e.g. "visa", "mastercard").
    - `last_four_digits` string, required — Last four digits of the saved card.
    - `month` integer, required — Card expiry month (two digits).
    - `year` integer, required — Card expiry year (two or four digits).
  - `metadata` object, required — Arbitrary key-value metadata attached to this customer.
  - `created_at` string, date-time, required — Timestamp when the customer was created.
  - `locale` 'ja' | 'en' | 'ko' — For supported payment methods, sets the language of the instruction page.

---

[API](https://skmtc.net/komoju/apis/komoju-api.md) · [All operations](https://skmtc.net/komoju/apis/komoju-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/komoju/komoju-api/versions/65483c40ba32/schema)
