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

# Batch Forget Facts

> Mark multiple facts as forgotten in a single request

```
POST /openapi/memorylake/api/v3/workspaces/{workspaceId}/projects/{projectId}/memories/facts/forget
```

Marks multiple facts as forgotten (expired) in a single request. Like [Forget Fact](/features/memorylake/api-reference/facts/forget-fact), this is a soft delete -- facts remain available for audit purposes but are excluded from future retrievals and searches.

<Note>
  **Permission required:** `project:mem_delete`
</Note>

### Path Parameters

<ParamField path="workspaceId" type="string" required>
  Workspace ID
</ParamField>

<ParamField path="projectId" type="string" required>
  Project ID
</ParamField>

### Request Body

<ParamField body="ids" type="array" required>
  Array of fact IDs to forget
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST 'https://app.memorylake.ai/openapi/memorylake/api/v3/workspaces/ws_abc123def456/projects/proj_a1b2c3d4e5f6/memories/facts/forget' \
    -H 'Authorization: Bearer sk_xxxxxx' \
    -H 'Content-Type: application/json' \
    -d '{
      "ids": [
        "fact_8f3a1b2c4d5e",
        "fact_2d4e6f8a0b1c",
        "fact_7g9h0i1j2k3l"
      ]
    }'
  ```
</RequestExample>

### Response

Returns an empty `data` object on success.

<ResponseExample>
  ```json Success (200) theme={null}
  {
    "success": true,
    "data": {}
  }
  ```
</ResponseExample>
