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 redact (`memver_...`).
21
1822## Headers
1923
2024- `"anthropic-beta": optional array of AnthropicBeta`
from line 123
119123
120124- `"anthropic-workspace-id": optional string`
121125
126 Optional header to select the Workspace for this request. The value is a Workspace ID (for example, `wrkspc_011CZkZaBF1tNoB5wlCeusgy`).
127
128 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.
129
122130## Returns
123131
124132- `BetaManagedAgentsMemoryVersion object`
from line 159
151159
152160 - `"created"`
153161
162 The memory was created. The first version in any memory's lineage.
163
154164 - `"modified"`
155165
166 The memory's `content`, `path`, or both were changed via update. Writes the agent makes through the filesystem mount also appear as `modified`.
167
156168 - `"deleted"`
169
170 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.
157171
158172 - `content: optional string or null`
159173