SmartMemory
POST
/memory/zettel/notes

Create a zettel note directly.

Bypasses /memory/add's LLM-classification pipeline so the consumer's explicit memory_type=zettel intent is preserved. Tags and title land on the [Zettel] row's top-level properties, queryable via /by-tag and /by-property.

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/memory/zettel/notes" \  -H "Content-Type: application/json" \  -d '{    "content": "string"  }'
null
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string",
      "input": null,
      "ctx": {}
    }
  ]
}