Python
# To use the Python SDK, install the package: # pip install zentryai from zentry import MemoryClient client = MemoryClient(api_key="your_api_key", org_id="your_org_id", project_id="your_project_id") memory_id = "<memory_id>" client.delete(memory_id=memory_id)
{ "message": "Memory deleted successfully!" }
API key authentication. Prefix your Zentry API key with 'Token '. Example: 'Token your_api_key'
The unique identifier of the memory to retrieve
Successful deletion of memory
"Memory deleted successfully!"