API Reference
Forget Memory
DELETE /v1/memories or DELETE /v1/memories/:id
Delete one or more memories.
Delete by ID
Accepts the public short id returned from store (mem_abc12345) or a full UUID.
curl -X DELETE https://api.databaset.com/v1/memories/mem_abc12345 \
-H "Authorization: Bearer db_..."Delete by user
curl -X DELETE "https://api.databaset.com/v1/memories?userId=user_123&appId=my-app" \
-H "Authorization: Bearer db_..."Response
Delete by ID:
{ "deleted": 1 }Delete by user:
{ "deleted": 3 }