Appearance
Evernote
Create and manage notes, notebooks, and tags in Evernote.
| Detail | Value |
|---|---|
| Category | Productivity |
| Base URL | https://api.evernote.com/v1 |
| Authentication | OAuth2 |
| Endpoints | 5 |
| Connector key | evernote |
Using Evernote in a workflow
- Go to Connections and click New Connection.
- Pick Evernote from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /notes | List notes |
POST /notes | Create a note |
GET /notes/{noteGuid} | Get a note |
GET /notebooks | List notebooks |
GET /search | Search notes |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /notes
List notes
| Detail | Value |
|---|---|
| Operation ID | productivity.listNotes |
| Method | GET |
| Path | /notes |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
notebookGuid | query | string | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Evernote connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.listNotes. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Evernote API reference.
POST /notes
Create a note
| Detail | Value |
|---|---|
| Operation ID | productivity.createNote |
| Method | POST |
| Path | /notes |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
title | string |
content | string |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Evernote connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.createNote. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Evernote API reference.
GET /notes/{noteGuid}
Get a note
| Detail | Value |
|---|---|
| Operation ID | productivity.getNote |
| Method | GET |
| Path | /notes/{noteGuid} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
noteGuid | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Evernote connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.getNote. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Evernote API reference.
GET /notebooks
List notebooks
| Detail | Value |
|---|---|
| Operation ID | productivity.listNotebooks |
| Method | GET |
| Path | /notebooks |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Evernote connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.listNotebooks. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Evernote API reference.
GET /search
Search notes
| Detail | Value |
|---|---|
| Operation ID | productivity.searchNotes |
| Method | GET |
| Path | /search |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
query | query | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Evernote connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.searchNotes. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Evernote API reference.