Get note with result spec
documentedRetrieve a note with a specified result spec (content, resources, attributes, etc.).
POST /noteStore/getNoteWithResultSpecNotesno 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 "{{$noteStoreUrl}}/getNoteWithResultSpec" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"authenticationToken": "{{$authentication_token}}", "guid": "{{$note_guid}}", "resultSpec": {"includeContent": true, "includeResourcesData": true, "includeResourcesRecognition": false, "includeResourcesAlternateData": false, "includeSharedNotes": false, "includeNoteAppDataValues": true, "includeResourceAppDataValues": true, "includeAccountLimits": false}}'