Googleapis Calendar
Google Calendar API lets applications create, read, update, and manage Google Calendar events and calendars.
- 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)
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
operation |
string | yes | — | One of: calendar_calendars_get, calendar_acl_list, calendar_acl_get, calendar_events_list, calendar_events_get, calendar_events_instances |
calendarId |
string | no | — | Path parameter calendarId (required by some operations). |
eventId |
string | no | — | Path parameter eventId (required by some operations). |
ruleId |
string | no | — | Path parameter ruleId (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |