Get note content
documentedReturn the ENML (content) of a note by GUID.
POST /noteStore/getNoteContentNotesno 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)
I’m going to be precise about Evernote’s API: getNoteContent is not a REST POST you can call at /noteStore/getNoteContent with a JSON body. It’s a Thrift RPC on the NoteStore service. The NoteStore URL you must call against is provided per-user after authentication (noteStoreUrl in the AuthenticationResult), and the Cloud API also exposes a web API prefix for thin REST-like endpoints (e.g., to download resources by appending /res/{guid} to webApiUrlPrefix). This is all described in the official Evernote Cloud API docs. See notes below. ([dev.evernote.com](https://dev.evernote.com/doc/reference/NoteStore.html))