Tools
Evernote
Manage notes, notebooks, and tags in Evernote
Integrate with Evernote to manage notes, notebooks, and tags. Create, read, update, copy, search, and delete notes. Create and list notebooks and tags.
Copy a note to another notebook in Evernote
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Evernote developer token |
noteGuid | string | Yes | GUID of the note to copy |
toNotebookGuid | string | Yes | GUID of the destination notebook |
| Parameter | Type | Description |
|---|
note | object | The copied note metadata |
Create a new note in Evernote
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Evernote developer token |
title | string | Yes | Title of the note |
content | string | Yes | Content of the note (plain text or ENML) |
notebookGuid | string | No | GUID of the notebook to create the note in (defaults to default notebook) |
tagNames | string | No | Comma-separated list of tag names to apply |
| Parameter | Type | Description |
|---|
note | object | The created note |
Create a new notebook in Evernote
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Evernote developer token |
name | string | Yes | Name for the new notebook |
stack | string | No | Stack name to group the notebook under |
| Parameter | Type | Description |
|---|
notebook | object | The created notebook |
Create a new tag in Evernote
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Evernote developer token |
name | string | Yes | Name for the new tag |
parentGuid | string | No | GUID of the parent tag for hierarchy |
| Parameter | Type | Description |
|---|
tag | object | The created tag |
Move a note to the trash in Evernote
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Evernote developer token |
noteGuid | string | Yes | GUID of the note to delete |
| Parameter | Type | Description |
|---|
success | boolean | Whether the note was successfully deleted |
noteGuid | string | GUID of the deleted note |
Retrieve a note from Evernote by its GUID
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Evernote developer token |
noteGuid | string | Yes | GUID of the note to retrieve |
withContent | boolean | No | Whether to include note content (default: true) |
| Parameter | Type | Description |
|---|
note | object | The retrieved note |
Retrieve a notebook from Evernote by its GUID
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Evernote developer token |
notebookGuid | string | Yes | GUID of the notebook to retrieve |
| Parameter | Type | Description |
|---|
notebook | object | The retrieved notebook |
List all notebooks in an Evernote account
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Evernote developer token |
| Parameter | Type | Description |
|---|
notebooks | array | List of notebooks |
List all tags in an Evernote account
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Evernote developer token |
| Parameter | Type | Description |
|---|
tags | array | List of tags |
Search for notes in Evernote using the Evernote search grammar
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Evernote developer token |
query | string | Yes | Search query using Evernote search grammar (e.g., "tag:work intitle:meeting") |
notebookGuid | string | No | Restrict search to a specific notebook by GUID |
offset | number | No | Starting index for results (default: 0) |
maxNotes | number | No | Maximum number of notes to return (default: 25) |
| Parameter | Type | Description |
|---|
totalNotes | number | Total number of matching notes |
notes | array | List of matching note metadata |
Update an existing note in Evernote
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Evernote developer token |
noteGuid | string | Yes | GUID of the note to update |
title | string | No | New title for the note |
content | string | No | New content for the note (plain text or ENML) |
notebookGuid | string | No | GUID of the notebook to move the note to |
tagNames | string | No | Comma-separated list of tag names (replaces existing tags) |
| Parameter | Type | Description |
|---|
note | object | The updated note |
- Category:
tools
- Type:
evernote