Lodol Docs

Evernote

API actions for the Evernote integration.

Evernote

Organize and manage notes, notebooks, and tags in Evernote.


Create note

Create a new note in Evernote.

Parameters

ParameterTypeRequiredDescription
titlestringYesThe note title.
contentstringYesThe note content. Plain text works; Evernote's note format (ENML) is also accepted.
notebook_guidstringNoThe ID of the notebook to add the note to.
tag_namesarrayNoOptional list of tag names to apply.

Response

{
  "guid": "note-guid-new",
  "title": "New Note"
}

Delete note

Move a note to the trash in Evernote.

Parameters

ParameterTypeRequiredDescription
note_guidstringYesThe ID of the note to delete.

Response

true

Get note

Look up a single note in Evernote by its ID.

Parameters

ParameterTypeRequiredDescription
note_guidstringYesThe ID of the note to retrieve.
include_contentbooleanNoSet to true to include the note's content, or false to return only its details.

Response

{
  "content": "<en-note>Note content here</en-note>",
  "guid": "note-guid-123",
  "title": "Meeting Notes"
}

List notebooks

List all notebooks in the Evernote account.

Response

[
  {
    "guid": "nb-guid-123",
    "name": "Work Notes"
  },
  {
    "guid": "nb-guid-456",
    "name": "Personal"
  }
]

List notes

List notes in a notebook with optional filtering.

Parameters

ParameterTypeRequiredDescription
notebook_guidstringNoThe ID of the notebook to list notes from. Leave blank to include all notebooks.
limitnumberNoMaximum number of notes to return.

Response

[
  {
    "guid": "note-guid-123",
    "notebookGuid": "nb-guid-123",
    "title": "Meeting Notes"
  }
]

List tags

List all tags in the Evernote account.

Response

[
  {
    "guid": "tag-guid-123",
    "name": "important"
  },
  {
    "guid": "tag-guid-456",
    "name": "todo"
  }
]

Search notes

Search notes in Evernote by keywords, tags, or notebook.

Parameters

ParameterTypeRequiredDescription
querystringYesWhat to search for.
notebook_guidstringNoThe ID of the notebook to search within. Leave blank to search all notebooks.
tag_namesarrayNoList of tag names to filter the search.

Response

[
  {
    "guid": "note-guid-123",
    "title": "Meeting Notes"
  }
]

Update note

Update an existing note in Evernote.

Parameters

ParameterTypeRequiredDescription
note_guidstringYesThe ID of the note to update.
titlestringNoOptional new title.
contentstringNoOptional new content.
tag_namesarrayNoUpdated list of tags.

Response

{
  "guid": "note-guid-123",
  "title": "Updated Note Title"
}

On this page