Delete a memory store
DELETE/v1/memory_stores/{memory_store_id}
Delete a memory store
Parameters
Returns
Delete a memory store
import Anthropic from "@anthropic-ai/sdk";
const client = new Anthropic({
apiKey: process.env["ANTHROPIC_API_KEY"] // This is the default and can be omitted
});
const betaManagedAgentsDeletedMemoryStore = await client.beta.memoryStores.delete(
"memory_store_id"
);
console.log(betaManagedAgentsDeletedMemoryStore.id);Response 200
{
"id": "id",
"type": "memory_store_deleted"
}Returns Examples
Response 200
{
"id": "id",
"type": "memory_store_deleted"
}