API referenceMemories
List a memory's version history.
Errors return a
{ message, code }body — see the error reference for thecode→ SDK exception map.
GET
/v1/memories/{id}/versionsReturns the memory's version history oldest-first — each prior version's content and the reason it was superseded — so a client can render a diff. Scoped to the API key's project; an unknown memory (or one in another project) is a 404.
Authorization
bearerAuth AuthorizationBearer <token>
API key sent as a bearer token: Authorization: Bearer <key>.
In: header
Path Parameters
id*string
Format
uuidResponse Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/memories/497f6eca-6276-4993-bfeb-53cbbbba6f08/versions"{ "versions": [ { "version": 1, "content": "string", "changed_by": "string", "reason": "string", "created_at": "2019-08-24T14:15:22Z" } ]}{ "message": "string", "code": "string"}{ "message": "string", "code": "string"}