memμrondocs
Console
API REFERENCE

Update a memory

Update the content or scope of a known memory. Provide at least one of content or scope.

Requires authentication — a Bearer token or X-Memuron-Actor-Id header.

Path parameters

memory_idstringrequired

Body parameters

contentstringoptional

scopestring[]optional

PUT/memuron/memories/{memory_id}
curl -X PUT https://api.memuron.com/memuron/memories/{memory_id} \
  -H "Content-Type: application/json"
200 OK
{
  "status": "success",
  "memory": {
    "id": "artha_…",
    "content": "updated text"
  }
}