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 or ENML).
notebook_guidstringNoOptional notebook GUID to create the note in.
tag_namesarrayNoOptional list of tag names to apply.

Response

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

Delete note

Delete (move to trash) a note in Evernote.

Parameters

ParameterTypeRequiredDescription
note_guidstringYesThe GUID of the note to delete.

Response

true

Get note

Retrieve a specific note by its GUID.

Parameters

ParameterTypeRequiredDescription
note_guidstringYesThe GUID of the note to retrieve.
include_contentbooleanNoWhether to include the note content.

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_guidstringNoOptional notebook GUID to filter notes.
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 query, tags, or notebook.

Parameters

ParameterTypeRequiredDescription
querystringYesSearch query to filter notes.
notebook_guidstringNoNotebook GUID to scope the search.
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 GUID 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