cURL
curl --request DELETE \ --url https://www.memoryplugin.com/api/memories/{memoryId} \ --header 'Authorization: Bearer <token>'
{ "message": "Memory deleted" }
Delete a single memory by its ID. Removes the memory from the database and vector store.
curl -X DELETE https://www.memoryplugin.com/api/memories/mem-abc-123 \ -H "Authorization: Bearer YOUR_API_KEY"
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The memory ID to delete.
Memory deleted
Was this page helpful?