The durable memory the AI keeps for a conversation
GET
/conversation/memory/{conversationId}/atoms
const url = 'https://api.harperharbor.com/open/v1/conversation/memory/example/atoms';const options = {method: 'GET', 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 GET \ --url https://api.harperharbor.com/open/v1/conversation/memory/example/atoms \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”conversationId
required
string
Responses
Section titled “Responses”Newest first.
Media typeapplication/json
object
atoms
Array<object>
object
atomId
string
atomValue
string
importance
number
createTime
string
Examplegenerated
{ "atoms": [ { "atomId": "example", "atomValue": "example", "importance": 1, "createTime": "example" } ]}