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

# Delete client

> Permanently delete a client.

<Warning>
  **Deprecated.** This endpoint is no longer part of the public API. Use [Delete individual client](/api-reference/management/individual-clients/delete-client) under **Individual Clients** instead.
</Warning>

Permanently deletes a client and all associated data from the company. Requires an API key with access level 3 or higher.

## Path parameters

<ParamField path="id" type="string" required>
  Unique identifier of the client to delete.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.cryptomate.me/management/clients/client_a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d" \
    -H "x-api-key: $CRYPTOMATE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 404 Not Found theme={null}
  {
    "code": "NOT_FOUND",
    "message": "Company client not found with id: client_a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d"
  }
  ```
</ResponseExample>
