← All Skills
AI Skill

gog

Google Workspace (Gmail, Calendar, Drive) via Composio - already connected!

0.0 (0 reviews) 0 stars 📦 0 installs 👁 0 views
Quick Install
npx skills add gog
AI Skill

gog

Google Workspace (Gmail, Calendar, Drive) via Composio - already connected!

0.0 (0 reviews) 0 stars 📦 0 installs 👁 0 views
Quick Install
npx skills add gog
AI Skill

gog

Google Workspace (Gmail, Calendar, Drive) via Composio - already connected!

0 stars
📦 0 installs
👁️ 0 views

Google Workspace (via Composio)

Access Gmail, Google Calendar, and Google Drive using your connected Composio accounts. No additional setup needed!

Connection Status

All accounts ACTIVE ✅

| Service | Email / Account | Account ID |

|---------|----------------|------------|

| Gmail (DEFAULT) | [email protected] | c23afb0f-c86f-4e4d-8014-d47483e2e396 |

| Gmail | [email protected] | ee2b5a69-f814-4be0-8d6f-b4f25c9913d2 |

| Gmail | [email protected] | d8e56054-8693-4e01-98bd-269ff2abba03 |

| Google Calendar | — | 0d8b48dc-624f-45bb-b4e0-60f4958d9051 |

| Google Drive | — | d4278058-e4ec-4afd-b05c-e395405160d5 |

| Google Analytics | — | 71af20f0-e40a-45a5-ba4a-971d6e0ab0a2 |

Default Gmail is [email protected]. Use this unless the user specifies a different account.

API Usage

curl -X POST "https://backend.composio.dev/api/v2/actions/{ACTION}/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"ACCOUNT_ID","input":{...}}'

---

Gmail Actions

Send Email:

curl -X POST "https://backend.composio.dev/api/v2/actions/GMAIL_SEND_EMAIL/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"c23afb0f-c86f-4e4d-8014-d47483e2e396","input":{"recipient_email":"[email protected]","subject":"Subject","message_body":"Email body"}}'

Fetch Emails:

curl -X POST "https://backend.composio.dev/api/v2/actions/GMAIL_FETCH_EMAILS/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"c23afb0f-c86f-4e4d-8014-d47483e2e396","input":{"max_results":10}}'

Get Profile:

curl -X POST "https://backend.composio.dev/api/v2/actions/GMAIL_GET_PROFILE/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"c23afb0f-c86f-4e4d-8014-d47483e2e396","input":{}}'

---

Google Calendar Actions

Create Event:

curl -X POST "https://backend.composio.dev/api/v2/actions/GOOGLECALENDAR_CREATE_EVENT/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"0d8b48dc-624f-45bb-b4e0-60f4958d9051","input":{"summary":"Meeting","start_datetime":"2026-02-06T10:00:00","end_datetime":"2026-02-06T11:00:00","description":"Event description"}}'

Find Events:

curl -X POST "https://backend.composio.dev/api/v2/actions/GOOGLECALENDAR_FIND_EVENT/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"0d8b48dc-624f-45bb-b4e0-60f4958d9051","input":{"query":"meeting"}}'

List Calendars:

curl -X POST "https://backend.composio.dev/api/v2/actions/GOOGLECALENDAR_LIST_CALENDARS/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"0d8b48dc-624f-45bb-b4e0-60f4958d9051","input":{}}'

---

Google Drive Actions

List Files:

curl -X POST "https://backend.composio.dev/api/v2/actions/GOOGLEDRIVE_LIST_FILES/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"d4278058-e4ec-4afd-b05c-e395405160d5","input":{}}'

Find File:

curl -X POST "https://backend.composio.dev/api/v2/actions/GOOGLEDRIVE_FIND_FILE/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"d4278058-e4ec-4afd-b05c-e395405160d5","input":{"query":"filename"}}'

Create Folder:

curl -X POST "https://backend.composio.dev/api/v2/actions/GOOGLEDRIVE_CREATE_FOLDER/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"d4278058-e4ec-4afd-b05c-e395405160d5","input":{"folder_name":"New Folder"}}'

---

Quick Test

Test Gmail:

curl -X POST "https://backend.composio.dev/api/v2/actions/GMAIL_GET_PROFILE/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"c23afb0f-c86f-4e4d-8014-d47483e2e396","input":{}}'

Test Calendar:

curl -X POST "https://backend.composio.dev/api/v2/actions/GOOGLECALENDAR_LIST_CALENDARS/execute" \

-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \

-H "Content-Type: application/json" \

-d '{"connectedAccountId":"0d8b48dc-624f-45bb-b4e0-60f4958d9051","input":{}}'

Comments & Discussion

Add a comment

Reviews

0.0
0 reviews

Write a Review

  • No reviews yet. Be the first to review!

Get Weekly AI Skills

Join 500+ one-person companies receiving curated AI tools every week.

Reviews

0.0
0 reviews

Write a Review

  • No reviews yet. Be the first to review!

Get Weekly AI Skills

Join 500+ one-person companies receiving curated AI tools every week.