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

# Delete ICP

> Delete an Ideal Customer Profile by ID

Delete an ICP by its ID.

## Path Parameters

<ParamField path="id" type="string" required>
  ICP ID to delete
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.clustr-ai.com/api/public/company-icp/550e8400-..." \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "message": "ICP deleted successfully"
    }
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": { "message": "ICP not found", "code": "NOT_FOUND" }
  }
  ```
</ResponseExample>
