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

# Delete Memory

> Permanently delete an entire memory and all associated data including users, calls, and metadata.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="memory_id" type="string" required>
  The unique identifier of the memory to delete.
</ParamField>

### Response

<ResponseField name="data" type="object">
  Response data confirming memory deletion.
</ResponseField>

<ResponseField name="data.message" type="string">
  Success message confirming memory was deleted.
</ResponseField>

<ResponseField name="errors" type="null">
  Error array (null on success).
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "data": {
      "message": "Memory deleted successfully"
    },
    "errors": null
  }
  ```

  ```json Server Error theme={null}
  {
    "data": null,
    "errors": [
      {
        "error": "MEMORY_DELETE_ERROR",
        "message": "Failed to delete memory."
      }
    ]
  }
  ```
</ResponseExample>

### ⚠️ Warning

This action is **irreversible**. Deleting a memory will permanently remove:

* The memory itself and all its metadata
* All user entries and their associated data
* All call associations and summaries
* Any custom metadata and summaries

## Make sure you have backed up any important data before proceeding with deletion.

Docs for agents: [llms.txt](/llms.txt)
