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

# Remove an obsolete knowledge document (not reversible)

> The delete result.

### Path parameters

<ParamField path="id" type="string" required />

### Response

`object`

<ResponseField name="object" type="string" required />

<ResponseField name="action" type="string" required />

<ResponseField name="point_id" type="string (uuid)" required>
  The knowledge document id (a Qdrant point id).
</ResponseField>

### Status codes

| Code  | Meaning                                                  |
| ----- | -------------------------------------------------------- |
| `200` | The delete result.                                       |
| `401` | Missing, invalid, or expired API key.                    |
| `403` | The key lacks a required scope.                          |
| `404` | Not found, or not in the organization that owns the key. |
| `429` | Rate limit exceeded.                                     |

### Access

|                |                        |
| -------------- | ---------------------- |
| Required scope | `knowledge:write`      |
| Rate limit     | 30 requests per minute |

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url 'https://response.stateset.com/api/v1/knowledge/{id}' \
    --header "Authorization: Bearer $RESPONSECX_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "knowledge.write_result",
    "action": "deleted",
    "point_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  }
  ```
</ResponseExample>
