Skip to main content
DELETE
/
user-memories
/
{user_memory_id}
Python
import os
from datagrid_ai import Datagrid

client = Datagrid(
    api_key=os.environ.get("DATAGRID_API_KEY"),  # This is the default and can be omitted
)
client.memory.user.delete(
    "user_memory_id",
)

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

user_memory_id
string
required

The ID of the user memory to delete.

Response

204

Successfully deleted user memory