Skip to main content
PUT
/
api
/
memory
/
{memory_id}
Update Memory
curl --request PUT \
  --url https://api.example.com/api/memory/{memory_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>",
  "keywords": [
    "<string>"
  ],
  "tags": [
    "<string>"
  ],
  "category": "<string>",
  "metadata": {}
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

memory_id
string
required

Body

application/json
content
string | null

Updated memory content

keywords
string[] | null

Updated memory keywords

tags
string[] | null

Updated memory tags

category
string | null

Updated memory category

metadata
Metadata · object

Updated memory metadata

Response

Successful Response

The response is of type Response Update Memory Api Memory Memory Id Put · object.