Skip to main content
PATCH
Update Memory
Update specific fields of an existing memory blob. Requires the user’s ID and Memory Key for verification and potential re-encryption. Only include fields in the request body that you wish to modify. Sending a tags array replaces the existing tags entirely.

Authorization

Requires Bearer token authentication using your Developer JWT.

Authorizations

Authorization
string
header
required

JWT token obtained via /auth/token endpoint.

Path Parameters

blobId
string
required

The unique ID of the memory blob to update.

Body

application/json

Only include fields you wish to update.

user_id
string<uuid>
required

User's unique ID (required for identification).

memoryKey
string
required

User's memory key (required for verification/encryption).

content
string

New memory content (plaintext or pre-encrypted).

title
string
summary
string
tags
string[]

Replaces existing tags entirely with this list.

importance
number<float>
confidence
number<float>
source
string

Response

Memory blob updated successfully.

Represents a memory blob as returned by Create/Update operations (content is not included).

id
string
user_id
string<uuid>
created_at
string<date-time>
updated_at
string<date-time>
source
string
title
string
summary
string
importance
number<float>
confidence
number<float>
tags
string[]
tag_ids
string[]