Copy note
documentedCreate a copy of an existing note.
POST /noteStore/copyNoteNotesno 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 unable to provide a valid curl command for POST /noteStore/copyNote because the Evernote Cloud API uses Thrift RPC (NoteStore.copyNote) rather than a JSON REST call. There is no publicly documented REST endpoint that accepts a JSON body for copyNote. The official documentation shows copyNote as a Thrift function on the NoteStore service with a signature like copyNote(authenticationToken, noteGuid, toNotebookGuid) and it requires Thrift-encoded payloads rather than a JSON payload. See the official NoteStore.copyNote entry and description: you pass authenticationToken, noteGuid, and toNotebookGuid, and the response is metadata for the new note. https://dev.evernote.com/doc/reference/NoteStore.html (Function: NoteStore.copyNote). The broader Cloud API docs also explain that you interact with NoteStore via Thrift (not a simple REST JSON call). https://dev.evernote.com/documentation/cloud/index.php. If you want to proceed with a real integration, the recommended approach is to use one of Evernote’s SDKs (or a Thrift client) to call NoteStore.copyNote. I can provide a concrete example in Python or Node.js using the Thrift-based SDKs, or I can outline how to invoke a REST-like wrapper if you have one available. Would you like a code sample (e.g., Python with Thrift or Node.js) that performs copyNote via the official Cloud API, or should I tailor a curl-style command against a REST wrapper you already use?