> ## 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 individual client

> Permanently delete an individual client.

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>

## Response

Returns `204 No Content` on success with an empty body.

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.cryptomate.me/management/clients/individuals/4QWq1rQtjnLM0wMswTRY9AmM4XTvY4GG" \
    -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: 4QWq1rQtjnLM0wMswTRY9AmM4XTvY4GG"
  }
  ```
</ResponseExample>
