Sign in

List note versions

documented

List available versions for a note.

POST /noteStore/listNotesVersionsNotesno 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)

I’m glad to help, but I want to flag an important detail before I generate a curl command: Evernote’s Cloud API does not expose a public REST endpoint /noteStore/listNoteVersions. The Cloud API uses Thrift RPC calls to NoteStore, and the base NoteStore URL is user-specific and obtained via the UserStore. The official docs show the function signature as: listNoteVersions(string authenticationToken, Types.Guid noteGuid) and it returns a list of NoteVersionId. This is a Thrift-based call, not a standard REST POST/JSON endpoint. See the Evernote Cloud API NoteStore reference for listNoteVersions. ([dev.evernote.com](https://dev.evernote.com/doc/reference/NoteStore.html))

Because of that, I can’t provide a valid REST curl command that would actually reach Evernote’s service in the way you described. If you want, I can help with either:
- a Thrift-based example in a language like Python/Java using the official SDKs, showing how to obtain the NoteStore URL, authenticate, and call listNoteVersions; or
- a curl-based example if you have a private REST wrapper that exposes a REST endpoint for Evernote (I’d need the exact wrapper URL and its expected JSON payload to build a real command).

Which path would you prefer?