CortexDB Docs
Integrations

Make.com

Capture CortexDB memory from Make.com scenarios via an HTTP module.

Make.com (formerly Integromat) talks to CortexDB through the HTTP → Make a request module — no package required. Use the REST API.

Capture module

  • URL: https://api-v1.cortexdb.ai/v1/experience
  • Method: POST
  • Headers: Authorization: Bearer <your token>, X-Cortex-Actor: user:alice
  • Body type: Raw / JSON:
{
  "scope": "org:acme/user:alice",
  "modality": "conversation",
  "content": { "kind": "text", "text": "{{1.message}}" },
  "context": { "observed_at": "{{now}}" },
  "idempotency_key": "{{1.id}}"
}

Map earlier-module fields into text and idempotency_key. modality is valid in the REST body.

See also

On this page