ReferenceMemories

Create a memory

Creates a memory box.

type decides where it runs:

TypeRuns onIsolation
sharedChordian infrastructure, shared enginesLogical, per-tenant filters
dedicatedChordian infrastructure, own namespacePhysical, own engines

To run a memory on your own server or cloud account, use the BYOI flow instead — those memories are provisioned through a dedicated wizard because they need infrastructure credentials that never touch this API.

POST
/api/v1/memories

Authorization

ApiKeyAuth
x-api-key<token>

A platform key (ck_live_…). Mint one in the console under Settings → API Keys.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/api/v1/memories" \  -H "Content-Type: application/json" \  -d '{    "display_name": "string"  }'
{  "memory_id": "string",  "workspace_id": "string",  "display_name": "string",  "type": "shared",  "status": "active",  "memory_serial": 0,  "subdomain": "string",  "created_at": "2019-08-24T14:15:22Z"}
Was this page helpful?
Report an issue