Googleapis Calendar
Connector for the googleapis-calendar API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://www.googleapis.com/calendar/v3 - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
calendar_calendars_get— GET /calendars/{calendarId} — Returns metadata for a calendar.calendar_acl_list— GET /calendars/{calendarId}/acl — Returns the rules in the access control list for the calendar.calendar_acl_get— GET /calendars/{calendarId}/acl/{ruleId} — Returns an access control rule.calendar_events_list— GET /calendars/{calendarId}/events — Returns events on the specified calendar.calendar_events_get— GET /calendars/{calendarId}/events/{eventId} — Returns an event based on its Google Calendar ID. To retrieve an event using itscalendar_events_instances— GET /calendars/{calendarId}/events/{eventId}/instances — Returns instances of the specified recurring event.
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: calendar_calendars_get
# (attach an 'oauth' credential to the task — no inline secrets)