Claude Platform Docs

메모리 버전

메모리 버전 목록 조회
$client->beta->memoryStores->memoryVersions->list(string memoryStoreID, ?string apiKeyID, ?\Datetime createdAtGte, ?\Datetime createdAtLte, ?int limit, ?string memoryID, ?ManagedAgentsMemoryVersionOperation operation, ?string page, ?string serviceAccountID, ?string sessionID, ?ManagedAgentsMemoryView view, ?list<AnthropicBeta> betas, ?string workspaceID): PageCursor<ManagedAgentsMemoryVersion>
GET/v1/memory_stores/{memory_store_id}/memory_versions
메모리 버전 조회
$client->beta->memoryStores->memoryVersions->retrieve(string memoryVersionID, string memoryStoreID, ?ManagedAgentsMemoryView view, ?list<AnthropicBeta> betas, ?string workspaceID): ManagedAgentsMemoryVersion
GET/v1/memory_stores/{memory_store_id}/memory_versions/{memory_version_id}
메모리 버전 삭제 처리
$client->beta->memoryStores->memoryVersions->redact(string memoryVersionID, string memoryStoreID, ?list<AnthropicBeta> betas, ?string workspaceID): ManagedAgentsMemoryVersion
POST/v1/memory_stores/{memory_store_id}/memory_versions/{memory_version_id}/redact
Models
One of the following:
class ManagedAgentsAPIActor { $type; $apiKeyID; }
Type type
string apiKeyID

ID of the API key that performed the write. This identifies the key, not the secret.

class ManagedAgentsMemoryVersion { $type; $id; $createdAt; /* 10 more */ }
One of the following:
"created"
"modified"
"deleted"
class ManagedAgentsServiceAccountActor { $type = 'service_account_actor'; $serviceAccountID; }
"service_account_actor" type
string serviceAccountID

ID of the service account that performed the write (a svac_... value).

class ManagedAgentsSessionActor { $type; $sessionID; }
Type type
string sessionID

ID of the session that performed the write (a sesn_... value). Look up the session via Retrieve a session for further provenance.

class ManagedAgentsUserActor { $type; $userID; }
Type type
string userID

ID of the user who performed the write (a user_... value).