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
| Parameter | Type | Required | Description |
|---|---|---|---|
note_id | string | Yes | ID of the note to label |
labels | array | Yes | Labels to add to the note |
Response
[
"work",
"important"
]Create note
Create a new note in Google Keep.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
title | string | Yes | Title of the note |
text | string | No | Body text of the note |
labels | array | No | Labels to apply to the note |
pinned | boolean | No | Whether the note should be pinned |
Response
"notes/abc123def456"List notes
List notes from Google Keep.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
page_size | number | No | Maximum number of notes to return (1-100) |
Response
[
{
"id": "notes/abc123def456",
"title": "Meeting Notes"
},
{
"id": "notes/xyz789ghi012",
"title": "Shopping List"
}
]