Sign in

Create note link

documented

Create a link between a note and another entity (e.g., feature, initiative).

POST /notes/{noteId}/linksNotesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{baseUrl}}/notes/{{$noteId}}/links/{{$entityId}}" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "X-Version: 1" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"note_id": "{{$noteId}}", "entity_id": "{{$entityId}}", "link_type": "{{$link_type}}"}'