Sign in

Authenticate to business

documented

Authenticate to a user’s associated Evernote Business if part of a business.

POST /userStore/authenticateToBusinessUsersno 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 can't provide a working keychains curl for Evernote's authenticateToBusiness endpoint because this operation is a Thrift RPC, not a public REST/JSON endpoint. The Evernote UserStore.authenticateToBusiness method is documented as a Thrift function, and the HTTP URL, headers, and JSON body format for a REST call are not provided in the official docs. To call this function in a real app, you must use the Thrift transport to the host returned by the service (the bootstrap info provides the serviceHost) and invoke the method with a Thrift client, not a raw JSON curl. See the official docs: authenticateToBusiness is a UserStore Thrift function, and the serviceHost/noteStoreUrl are provided by the bootstrap/authentication flow. ([dev.evernote.com](https://dev.evernote.com/doc/reference/UserStore.html?utm_source=openai))

If you want a valid Keychains curl workflow, I can instead provide a template for a REST-based step (e.g., starting OAuth flow) or guide you to implement this via the official Evernote Cloud API SDKs which handle Thrift under the hood. For example, you can start the OAuth flow per the Evernote docs, which describe obtaining a request token from https://www.evernote.com/oauth. ([dev.evernote.com](https://dev.evernote.com/doc/articles/authentication.php?utm_source=openai))