Google Docs integration
Google Docs is a cloud-based word processor with real-time collaboration,…
- Provider
- googledocs
- Category
- Other
- Setup
- One-click OAuth (we host the OAuth app)
- Actions
- 35 available
Quick start
Call Google Docs from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Google Docs's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"GOOGLEDOCS_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
OverSkill hosts the OAuth application for Google Docs. End-users click Connect on the integration card in your app, complete the OAuth flow with Google Docs, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.
Supported auth schemes: OAUTH2.
Available actions
35 actions exposed via the
Google Docs integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
GOOGLEDOCS_COPY_DOCUMENT -
GOOGLEDOCS_CREATE_DOCUMENT -
GOOGLEDOCS_CREATE_DOCUMENT2 -
GOOGLEDOCS_CREATE_DOCUMENT_MARKDOWN -
GOOGLEDOCS_CREATE_FOOTER -
GOOGLEDOCS_CREATE_FOOTNOTE -
GOOGLEDOCS_CREATE_HEADER -
GOOGLEDOCS_CREATE_NAMED_RANGE -
GOOGLEDOCS_CREATE_PARAGRAPH_BULLETS -
GOOGLEDOCS_DELETE_CONTENT_RANGE -
GOOGLEDOCS_DELETE_FOOTER -
GOOGLEDOCS_DELETE_HEADER
Show all 35 actions
-
GOOGLEDOCS_DELETE_NAMED_RANGE -
GOOGLEDOCS_DELETE_PARAGRAPH_BULLETS -
GOOGLEDOCS_DELETE_TABLE_COLUMN -
GOOGLEDOCS_DELETE_TABLE_ROW -
GOOGLEDOCS_EXPORT_DOCUMENT_AS_PDF -
GOOGLEDOCS_GET_DOCUMENT_BY_ID -
GOOGLEDOCS_GET_DOCUMENT_PLAINTEXT -
GOOGLEDOCS_INSERT_INLINE_IMAGE -
GOOGLEDOCS_INSERT_PAGE_BREAK -
GOOGLEDOCS_INSERT_TABLE_ACTION -
GOOGLEDOCS_INSERT_TABLE_COLUMN -
GOOGLEDOCS_INSERT_TEXT_ACTION -
GOOGLEDOCS_LIST_SPREADSHEET_CHARTS -
GOOGLEDOCS_REPLACE_ALL_TEXT -
GOOGLEDOCS_REPLACE_IMAGE -
GOOGLEDOCS_SEARCH_DOCUMENTS -
GOOGLEDOCS_UNMERGE_TABLE_CELLS -
GOOGLEDOCS_UPDATE_DOCUMENT_BATCH -
GOOGLEDOCS_UPDATE_DOCUMENT_MARKDOWN -
GOOGLEDOCS_UPDATE_DOCUMENT_SECTION_MARKDOWN -
GOOGLEDOCS_UPDATE_DOCUMENT_STYLE -
GOOGLEDOCS_UPDATE_EXISTING_DOCUMENT -
GOOGLEDOCS_UPDATE_TABLE_ROW_STYLE
Build with Google Docs
Open OverSkill, describe what you want to build, and reference Google Docs in your prompt — the AI will wire up the integration automatically.