SmartMemory
POST
/memory/zettel/{note_id}/links

Create an explicit typed link between two zettels.

LINKS_TO uses the bidirectional helper; arbitrary relation types go through add_dynamic_relation and become visible via GET /zettel/by-relation/{source_id}/{relation_type}.

Path Parameters

note_id*Note Id

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