Forget one memory
DELETE
/conversation/memory/{conversationId}/atoms/{atomId}
const url = 'https://api.harperharbor.com/open/v1/conversation/memory/example/atoms/example';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://api.harperharbor.com/open/v1/conversation/memory/example/atoms/example \ --header 'Authorization: Bearer <token>'Cannot be undone; the AI may re-learn it from later turns.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”conversationId
required
string
atomId
required
string
Responses
Section titled “Responses”Forgotten.