ReferenceSpaces

Capture a conversation

Stores an LLM conversation in the space so the organisation keeps what was asked and answered — including in tools Chordian does not host.

Content is perimeter-scanned on the way in, then vectorised and entity-extracted asynchronously. The write returns immediately; capture never sits in the path of the model response.

POST
/api/v1/memory/space/{space_id}/conversations

Authorization

x-api-key<token>

A platform key (ck_live_…) — reaches every memory in the tenant.

In: header

Path Parameters

space_id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v1/memory/space/spc_7f3a91/conversations" \  -H "Content-Type: application/json" \  -d '{    "source": "string",    "turns": [      {        "role": "user",        "content": "string"      }    ]  }'
{  "conversation_id": "string",  "dlp_matches": 0}
Was this page helpful?
Report an issue