Skip to content

me_memory_delete

Permanently remove a memory by ID.

This is irreversible. Consider archiving (via a meta update) or moving (via me_memory_mv) instead.

Parameters

Name Type Required Description
id string yes The UUID of the memory to delete.

Returns

{
  "deleted": true
}
Field Type Description
deleted boolean true if the memory was deleted.

Example

{
  "id": "0194a000-0001-7000-8000-000000000001"
}

Notes

  • Deleting a non-existent memory returns an error.
  • This operation is idempotent in the sense that re-deleting has no side effects beyond the error.
  • For bulk deletion by tree path, use me_memory_delete_tree instead.