Skip to main content
POST
/
api
/
v1
/
context
/
memory
/
update
Update memory context data
curl --request POST \
  --url https://platform-backend.getalchemystai.com/api/v1/context/memory/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "memoryId": "support-thread-TCK-1234",
  "contents": [
    {
      "content": "Customer asked about pricing for the Scale plan.",
      "metadata": {
        "messageId": "msg-1"
      },
      "role": "user",
      "id": "msg-1",
      "createdAt": "2025-01-10T12:34:56.000Z"
    },
    {
      "content": "Updated answer about the Scale plan pricing after discounts.",
      "metadata": {
        "messageId": "msg-2"
      },
      "role": "assistant",
      "id": "msg-2",
      "createdAt": "2025-01-10T12:36:00.000Z"
    }
  ]
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
memoryId
string

The ID of the memory to update

contents
object[]

Array of updated content objects

Response

Memory context updated successfully