import { Client } from 'evernote';
export default defineComponent({
props: {
evernote: {
type: "app",
app: "evernote",
}
},
async run({ steps, $ }) {
var developerToken = this.evernote.$auth.developer_token;
var client = new Client({ token: developerToken, sandbox: false });
var noteStore = await client.getNoteStore();
return await noteStore.listNotebooks();
},
})
Creates a new note in Evernote. See the documentation
Creates a new notebook in Evernote. See the documentation
Updates an existing note in Evernote. See the documentation
Evernote uses API keys for authentication. When you connect your Evernote account, Pipedream securely stores the keys so you can easily authenticate to Evernote APIs in both code and no-code steps.