Skip to main content
PUT
/
api
/
assistants
/
{id}
/
memory
/
{key}
cURL
curl --request PUT \
  --url http://localhost/api/assistants/{id}/memory/{key} \
  --header 'Content-Type: application/json' \
  --data '{
  "uuid": "<string>",
  "createdOn": "2023-11-07T05:31:56Z",
  "updatedOn": "2023-11-07T05:31:56Z",
  "changeSequence": 123,
  "key": "<string>",
  "data": {},
  "id": "<string>"
}'
{
  "uuid": "<string>",
  "createdOn": "2023-11-07T05:31:56Z",
  "updatedOn": "2023-11-07T05:31:56Z",
  "changeSequence": 123,
  "key": "<string>",
  "data": {},
  "id": "<string>"
}

Path Parameters

id
string
required
key
string
required

Body

application/json
uuid
string

The UUID of the object

createdOn
string<date-time>
updatedOn
string<date-time>
changeSequence
integer

The change sequence of the object, which can be used to track modications

key
string
data
object
id
string

The ID of the object

Response

OK

uuid
string

The UUID of the object

createdOn
string<date-time>
updatedOn
string<date-time>
changeSequence
integer

The change sequence of the object, which can be used to track modications

key
string
data
object
id
string

The ID of the object

I