Developer docs

Gmail integration

Email sending and inbox management

Updated June 2026 63 actions available

Provider
google
Category
Email
Setup
See setup section below
Actions
63 available

Quick start

Call Gmail from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Gmail'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(
  "GMAIL_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

Setup details for Gmail aren't published yet. If you need this integration in production, contact the OverSkill team and we'll prioritize it.

Available actions

63 actions exposed via the Gmail integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 63 actions
  • GMAIL_FETCH_EMAILS
  • GMAIL_FETCH_MESSAGE_BY_MESSAGE_ID
  • GMAIL_FETCH_MESSAGE_BY_THREAD_ID
  • GMAIL_FORWARD_MESSAGE
  • GMAIL_GET_ATTACHMENT
  • GMAIL_GET_AUTO_FORWARDING
  • GMAIL_GET_CONTACTS
  • GMAIL_GET_DRAFT
  • GMAIL_GET_FILTER
  • GMAIL_GET_LABEL
  • GMAIL_GET_LANGUAGE_SETTINGS
  • GMAIL_GET_PEOPLE
  • GMAIL_GET_PROFILE
  • GMAIL_GET_VACATION_SETTINGS
  • GMAIL_IMPORT_MESSAGE
  • GMAIL_INSERT_MESSAGE
  • GMAIL_LIST_CSE_IDENTITIES
  • GMAIL_LIST_CSE_KEYPAIRS
  • GMAIL_LIST_DRAFTS
  • GMAIL_LIST_FILTERS
  • GMAIL_LIST_FORWARDING_ADDRESSES
  • GMAIL_LIST_HISTORY
  • GMAIL_LIST_LABELS
  • GMAIL_LIST_MESSAGES
  • GMAIL_LIST_SEND_AS
  • GMAIL_LIST_SMIME_INFO
  • GMAIL_LIST_THREADS
  • GMAIL_MODIFY_THREAD_LABELS
  • GMAIL_MOVE_THREAD_TO_TRASH
  • GMAIL_MOVE_TO_TRASH
  • GMAIL_PATCH_LABEL
  • GMAIL_PATCH_SEND_AS
  • GMAIL_REMOVE_LABEL
  • GMAIL_REPLY_TO_THREAD
  • GMAIL_SEARCH_PEOPLE
  • GMAIL_SEND_DRAFT
  • GMAIL_SEND_EMAIL
  • GMAIL_SETTINGS_GET_IMAP
  • GMAIL_SETTINGS_GET_POP
  • GMAIL_SETTINGS_SEND_AS_GET
  • GMAIL_STOP_WATCH
  • GMAIL_UNTRASH_MESSAGE
  • GMAIL_UNTRASH_THREAD
  • GMAIL_UPDATE_DRAFT
  • GMAIL_UPDATE_IMAP_SETTINGS
  • GMAIL_UPDATE_LABEL
  • GMAIL_UPDATE_LANGUAGE_SETTINGS
  • GMAIL_UPDATE_POP_SETTINGS
  • GMAIL_UPDATE_SEND_AS
  • GMAIL_UPDATE_USER_ATTRIBUTES_VALUES
  • GMAIL_UPDATE_VACATION_SETTINGS

Build with Gmail

Open OverSkill, describe what you want to build, and reference Gmail in your prompt — the AI will wire up the integration automatically.