Open Connector
All tools

Google Keep

No catalog description yet.

google-keepv1.0.06 tools

Authentication

MethodKindStatusDetails
OAuth 2.0oauth2available

Call a tool

import { createClient } from "@open-connector/sdk";const oc = createClient({  baseUrl: "https://api.openconnector.dev",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({  slug: "GOOGLE_KEEP_MEDIA_DOWNLOAD",  connectedAccountId: "conn_...",  arguments: { /* match this tool's input schema */ },});
import Composio from "@composio/client";const composio = new Composio({  baseURL: "https://api.openconnector.dev/composio",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("GOOGLE_KEEP_MEDIA_DOWNLOAD", {  connected_account_id: "conn_...",  arguments: { /* match this tool's input schema */ },});
oc tools execute GOOGLE_KEEP_MEDIA_DOWNLOAD --data '{ }'

Tool catalog

Available tools

6 callable operations

Keep Media DownloadGOOGLE_KEEP_MEDIA_DOWNLOADGets an attachment. To download attachment media via REST requires the alt=media query parameter. Returns a 400 bad request error if attachment media is not available in the requested MIME type.

Gets an attachment. To download attachment media via REST requires the alt=media query parameter. Returns a 400 bad request error if attachment media is not available in the requested MIME type.

Authentication

Connected account required

Scopes

https://www.googleapis.com/auth/keephttps://www.googleapis.com/auth/keep.readonly

Tags

media
Keep Notes CreateGOOGLE_KEEP_NOTES_CREATECreates a new note.

Creates a new note.

Authentication

Connected account required

Scopes

https://www.googleapis.com/auth/keep

Tags

notes
Keep Notes DeleteGOOGLE_KEEP_NOTES_DELETEDeletes a note. Caller must have the `OWNER` role on the note to delete. Deleting a note removes the resource immediately and cannot be undone. Any collaborators will lose access to the note.

Deletes a note. Caller must have the `OWNER` role on the note to delete. Deleting a note removes the resource immediately and cannot be undone. Any collaborators will lose access to the note.

Authentication

Connected account required

Scopes

https://www.googleapis.com/auth/keep

Tags

notes
Keep Notes ListGOOGLE_KEEP_NOTES_LISTLists notes. Every list call returns a page of results with `page_size` as the upper bound of returned items. A `page_size` of zero allows the server to choose the upper bound. The ListNotesResponse contains at most `page_size` entries. If there are more things left to list, it provides a `next_page_token` value. (Page tokens are opaque values.) To get the next page of results, copy the result's `next_page_token` into the next request's `page_token`. Repeat until the `next_page_token` returned with a page of results is empty. ListNotes return consistent results in the face of concurrent changes, or signals that it cannot with an ABORTED error.

Lists notes. Every list call returns a page of results with `page_size` as the upper bound of returned items. A `page_size` of zero allows the server to choose the upper bound. The ListNotesResponse contains at most `page_size` entries. If there are more things left to list, it provides a `next_page_token` value. (Page tokens are opaque values.) To get the next page of results, copy the result's `next_page_token` into the next request's `page_token`. Repeat until the `next_page_token` returned with a page of results is empty. ListNotes return consistent results in the face of concurrent changes, or signals that it cannot with an ABORTED error.

Authentication

Connected account required

Scopes

https://www.googleapis.com/auth/keephttps://www.googleapis.com/auth/keep.readonly

Tags

notes
Keep Notes Permissions BatchCreateGOOGLE_KEEP_NOTES_PERMISSIONS_BATCH_CREATECreates one or more permissions on the note. Only permissions with the `WRITER` role may be created. If adding any permission fails, then the entire request fails and no changes are made.

Creates one or more permissions on the note. Only permissions with the `WRITER` role may be created. If adding any permission fails, then the entire request fails and no changes are made.

Authentication

Connected account required

Scopes

https://www.googleapis.com/auth/keep

Tags

notes
Keep Notes Permissions BatchDeleteGOOGLE_KEEP_NOTES_PERMISSIONS_BATCH_DELETEDeletes one or more permissions on the note. The specified entities will immediately lose access. A permission with the `OWNER` role can't be removed. If removing a permission fails, then the entire request fails and no changes are made. Returns a 400 bad request error if a specified permission does not exist on the note.

Deletes one or more permissions on the note. The specified entities will immediately lose access. A permission with the `OWNER` role can't be removed. If removing a permission fails, then the entire request fails and no changes are made. Returns a 400 bad request error if a specified permission does not exist on the note.

Authentication

Connected account required

Scopes

https://www.googleapis.com/auth/keep

Tags

notes