Skip to main content
DELETE
/
v1
/
projects
/
{projectId}
/
memory
/
{memoryId}
Delete memory
curl --request DELETE \
  --url https://api.example.com/v1/projects/{projectId}/memory/{memoryId}
projectId
string
required
Project UUID.
memoryId
string
required
Memory UUID.
This permanently deletes the memory and its vector embedding. Consider archiving instead if you want to preserve history.
curl -X DELETE https://api.getkommit.ai/v1/projects/a1b2c3d4-e5f6-7890-abcd-ef1234567890/memory/m1a2b3c4-d5e6-7890-abcd-ef1234567890 \
  -H "Authorization: Bearer km_your_api_key"