AACFlow

Evernote

Notizen, Notizbücher und Tags in Evernote verwalten

Evernote is a note-taking and organization platform that helps individuals and teams capture ideas, manage projects, and store information across devices. With notebooks, tags, and powerful search, Evernote serves as a central hub for knowledge management.

With the AACFlow Evernote integration, you can:

  • Create and update notes: Programmatically create new notes with content and tags, or update existing notes in any notebook.
  • Search and retrieve notes: Use Evernote's search grammar to find notes by keyword, tag, notebook, or other criteria, and retrieve full note content.
  • Organize with notebooks and tags: Create notebooks and tags, list existing ones, and move or copy notes between notebooks.
  • Delete and manage notes: Move notes to trash or copy them to different notebooks as part of automated workflows.

How it works in AACFlow: Add an Evernote block to your workflow and select an operation (e.g., create note, search notes, list notebooks). Provide your Evernote developer token and any required parameters. The block calls the Evernote API and returns structured data you can pass to downstream blocks — for example, searching for meeting notes and sending summaries to Slack, or creating notes from AI-generated content.

Nutzungsanleitung

Integrate with Evernote to manage notes, notebooks, and tags. Create, read, update, copy, search, and delete notes. Create and list notebooks and tags.

Tools

evernote_copy_note

Copy a note to another notebook in Evernote

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaEvernote developer token
noteGuidstringJaGUID of the note to copy
toNotebookGuidstringJaGUID of the destination notebook

Ausgabe

ParameterTypBeschreibung
noteobjectThe copied note metadata
guidstringNew note GUID
titlestringNote title
notebookGuidstringGUID of the destination notebook
creatednumberCreation timestamp in milliseconds
updatednumberLast updated timestamp in milliseconds

evernote_create_note

Create a new note in Evernote

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaEvernote developer token
titlestringJaTitle of the note
contentstringJaContent of the note (plain text or ENML)
notebookGuidstringNeinGUID of the notebook to create the note in (defaults to default notebook)
tagNamesstringNeinComma-separated list of tag names to apply

Ausgabe

ParameterTypBeschreibung
noteobjectThe created note
guidstringUnique identifier of the note
titlestringTitle of the note
contentstringENML content of the note
notebookGuidstringGUID of the containing notebook
tagNamesarrayTag names applied to the note
creatednumberCreation timestamp in milliseconds
updatednumberLast updated timestamp in milliseconds

evernote_create_notebook

Create a new notebook in Evernote

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaEvernote developer token
namestringJaName for the new notebook
stackstringNeinStack name to group the notebook under

Ausgabe

ParameterTypBeschreibung
notebookobjectThe created notebook
guidstringNotebook GUID
namestringNotebook name
defaultNotebookbooleanWhether this is the default notebook
serviceCreatednumberCreation timestamp in milliseconds
serviceUpdatednumberLast updated timestamp in milliseconds
stackstringNotebook stack name

evernote_create_tag

Create a new tag in Evernote

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaEvernote developer token
namestringJaName for the new tag
parentGuidstringNeinGUID of the parent tag for hierarchy

Ausgabe

ParameterTypBeschreibung
tagobjectThe created tag
guidstringTag GUID
namestringTag name
parentGuidstringParent tag GUID
updateSequenceNumnumberUpdate sequence number

evernote_delete_note

Move a note to the trash in Evernote

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaEvernote developer token
noteGuidstringJaGUID of the note to delete

Ausgabe

ParameterTypBeschreibung
successbooleanWhether the note was successfully deleted
noteGuidstringGUID of the deleted note

evernote_get_note

Retrieve a note from Evernote by its GUID

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaEvernote developer token
noteGuidstringJaGUID of the note to retrieve
withContentbooleanNeinWhether to include note content (default: true)

Ausgabe

ParameterTypBeschreibung
noteobjectThe retrieved note
guidstringUnique identifier of the note
titlestringTitle of the note
contentstringENML content of the note
contentLengthnumberLength of the note content
notebookGuidstringGUID of the containing notebook
tagGuidsarrayGUIDs of tags on the note
tagNamesarrayNames of tags on the note
creatednumberCreation timestamp in milliseconds
updatednumberLast updated timestamp in milliseconds
activebooleanWhether the note is active (not in trash)

evernote_get_notebook

Retrieve a notebook from Evernote by its GUID

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaEvernote developer token
notebookGuidstringJaGUID of the notebook to retrieve

Ausgabe

ParameterTypBeschreibung
notebookobjectThe retrieved notebook
guidstringNotebook GUID
namestringNotebook name
defaultNotebookbooleanWhether this is the default notebook
serviceCreatednumberCreation timestamp in milliseconds
serviceUpdatednumberLast updated timestamp in milliseconds
stackstringNotebook stack name

evernote_list_notebooks

List all notebooks in an Evernote account

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaEvernote developer token

Ausgabe

ParameterTypBeschreibung
notebooksarrayList of notebooks

evernote_list_tags

List all tags in an Evernote account

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaEvernote developer token

Ausgabe

ParameterTypBeschreibung
tagsarrayList of tags

evernote_search_notes

Search for notes in Evernote using the Evernote search grammar

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaEvernote developer token
querystringJaSearch query using Evernote search grammar (e.g., "tag:work intitle:meeting")
notebookGuidstringNeinRestrict search to a specific notebook by GUID
offsetnumberNeinStarting index for results (default: 0)
maxNotesnumberNeinMaximum number of notes to return (default: 25)

Ausgabe

ParameterTypBeschreibung
totalNotesnumberTotal number of matching notes
notesarrayList of matching note metadata

evernote_update_note

Update an existing note in Evernote

Eingabe

ParameterTypErforderlichBeschreibung
apiKeystringJaEvernote developer token
noteGuidstringJaGUID of the note to update
titlestringNeinNew title for the note
contentstringNeinNew content for the note (plain text or ENML)
notebookGuidstringNeinGUID of the notebook to move the note to
tagNamesstringNeinComma-separated list of tag names (replaces existing tags)

Ausgabe

ParameterTypBeschreibung
noteobjectThe updated note
guidstringUnique identifier of the note
titlestringTitle of the note
contentstringENML content of the note
notebookGuidstringGUID of the containing notebook
tagNamesarrayTag names on the note
creatednumberCreation timestamp in milliseconds
updatednumberLast updated timestamp in milliseconds

On this page

Heute mit dem Aufbau beginnen
Über 100 000 Entwickler vertrauen uns.
Die SaaS-Plattform zum Aufbau von KI-Agenten und für Ihre agentische Belegschaft.
Loslegen