Find notes metadata
documentedSearch for notes matching criteria and return metadata (titles, GUIDs, etc.).
POST /noteStore/findNotesMetadataNotesno implementation yet0 runsNo 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 "{{$notestore_url}}/findNotesMetadata" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"authenticationToken": "{{OAUTH2_ACCESS_TOKEN}}", "offset": {{$offset}}, "maxNotes": {{$limit}}, "filter": {"words": "{{$query}}", "notebooksGuid": "{{$notebooksGuid}}", "tagGuids": {{$tagGuids}}, "inactive": false}, "resultSpec": {"includeTitle": true, "includeNotebookGuid": true, "includeTagGuids": true, "includeLargestResourceMime": true, "includeLargestResourceSize": true}}'