Skip to main content
POST
/
memory-stores
/
{store_id}
/
reset
from hx import Client

client = Client()

result = client.memory.reset(
    store_id="ms-your-store-id"
)
{
  "message": "All memories reset successfully"
}
Reset all memories in a store.
This permanently deletes ALL memories in the store. This action cannot be undone.
store_id
string
required
Memory Store ID
from hx import Client

client = Client()

result = client.memory.reset(
    store_id="ms-your-store-id"
)
{
  "message": "All memories reset successfully"
}