Delete a memory
Delete a single memory by ID.
DELETE
/api/v1/memories/{memory_id}API Key
Stored locally, never sent to servers
Delete a memory
const options = { method: 'DELETE', headers: {'X-API-Key': 'mb_live_xxx'},};fetch('https://api.mem-brain.io/api/v1/memories/{memory_id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));{ "deleted": true, "id": "mem_xyz789"}