> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thepurplebox.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete a Domain

> Delete a domain identity from your account.

### Headers

<ParamField header="Content-Type" type="string" required>
  `application/json`
</ParamField>

### Query Parameters

<ParamField query="value" type="string" required>
  The domain name to delete (e.g., `yourdomain.com`).
</ParamField>

### Response

<ResponseField name="status" type="number">
  HTTP status code. Returns `200` when the domain is deleted successfully.
</ResponseField>

<ResponseField name="message" type="string">
  A human-readable message describing the result of the operation.
</ResponseField>

<ResponseField name="data" type="object | null">
  Contains deletion confirmation details. May be null for successful deletions.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
      "status": 200,
      "message": "domain deleted successfully.",
      "data": null
  }
  ```
</ResponseExample>
