Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

Retrieve a memory version changed

api/beta/memory_stores/memory_versions/retrieve

Nearest release: v2.1.280, published 20 hours after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+19added
Lines−1removed
From line 13 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits8to this page, all time

The whole hunk

from line 13, old and new numbered
/
lines
from line 13
1313 
1414- `memory_store_id: string`
1515 
16 The ID of the memory store that holds the version (`memstore_...`).
17 
1618- `memory_version_id: string`
1719 
20 The ID of the memory version to retrieve (`memver_...`).
21 
1822## Query parameters
1923 
2024- `view: optional BetaManagedAgentsMemoryView`
2125 
22 Query parameter for view
26 Selects which projection of a `memory` or `memory_version` the server returns. `basic` returns the object with `content` set to `null`; `full` populates `content`. When omitted, the default is endpoint-specific: retrieve operations default to `full`; list, create, and update operations default to `basic`. Listing with `view=full` caps `limit` at 20.
2327 
2428 - `"basic"`
2529 
30 Return the object with `content` set to `null`. The `content_size_bytes` and `content_sha256` fields remain populated, so sync clients can diff without fetching content.
31 
2632 - `"full"`
2733 
34 Return the object with `content` populated. On list endpoints, `view=full` caps `limit` at 20.
35 
2836## Headers
2937 
3038- `"anthropic-beta": optional array of AnthropicBeta`
from line 137
129137 
130138- `"anthropic-workspace-id": optional string`
131139 
140 Optional header to select the Workspace for this request. The value is a Workspace ID (for example, `wrkspc_011CZkZaBF1tNoB5wlCeusgy`).
141 
142 Only needed for credentials that can act on more than one Workspace. A credential that belongs to a specific Workspace may omit it; if sent, it must match that Workspace.
143 
132144## Returns
133145 
134146- `BetaManagedAgentsMemoryVersion object`
from line 173
161173 
162174 - `"created"`
163175 
176 The memory was created. The first version in any memory's lineage.
177 
164178 - `"modified"`
165179 
180 The memory's `content`, `path`, or both were changed via update. Writes the agent makes through the filesystem mount also appear as `modified`.
181 
166182 - `"deleted"`
183 
184 The memory was deleted. The `content`, `content_size_bytes`, and `content_sha256` fields are `null` on this version. The preceding version, while it is retained, records the deleted content's size and hash.
167185 
168186 - `content: optional string or null`
169187