Lodol Docs

Google Keep

API actions for the Google Keep integration.

Google Keep

Capture and organize notes with Google Keep.


Add labels

Add labels to an existing Google Keep note.

Parameters

ParameterTypeRequiredDescription
note_idstringYesID of the note to label
labelsarrayYesLabels to add to the note

Response

[
  "work",
  "important"
]

Create note

Create a new note in Google Keep.

Parameters

ParameterTypeRequiredDescription
titlestringYesTitle of the note
textstringNoBody text of the note
labelsarrayNoLabels to apply to the note
pinnedbooleanNoWhether the note should be pinned

Response

"notes/abc123def456"

List notes

List notes from Google Keep.

Parameters

ParameterTypeRequiredDescription
page_sizenumberNoMaximum number of notes to return (1-100)

Response

[
  {
    "id": "notes/abc123def456",
    "title": "Meeting Notes"
  },
  {
    "id": "notes/xyz789ghi012",
    "title": "Shopping List"
  }
]

On this page