Share note
documentedShare a note with others.
POST /noteStore/shareNoteNotesno 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 understand you want a real curl command, but there isn’t a public REST POST /noteStore/shareNote endpoint for Evernote Cloud API. Evernote’s Cloud API uses a Thrift-based NoteStore service (not a JSON REST call), and the NoteStore URL is per-user (returned during authentication). As a result, a simple curl POST with a JSON body to /noteStore/shareNote isn’t supported by the official docs. The official guidance shows sharing notes is done via the NoteStore Thrift interface (or via one of the SDKs), and if you want a share URL you generate by calling shareNote and then construct the URL using shardId, noteGuid, and the returned shareKey. See: - Cloud API basics and NoteStore usage (NoteStore is the RPC service, not a REST endpoint). ([dev.evernote.com](https://dev.evernote.com/doc/reference/NoteStore.html)) - Sharing notes: how shareNote returns a shareKey and how to form the public URL. ([dev.evernote.com](https://dev.evernote.com/doc/articles/sharing.php?utm_source=openai)) If you’d like, I can provide a code example using the official SDK (Python/Java) to call shareNote and then show how to build the public URL from the resulting shareKey. Or I can help you with a practical flow to get a Developer Token and call the API via OAuth 1.0a as documented. What language would you prefer? What I can offer right now are two concrete options: - Option A (recommended): SDK-based example to call shareNote, then construct the URL from shardId/noteGuid/shareKey. - Option B: Step-by-step guidance for authenticating (OAuth 1.0a or developer token) and then using an SDK to perform shareNote. Would you like me to provide an SDK-based example in Python or Java, including how to obtain tokens and build the share URL?