?
listGoogleCalendarEvents
List upcoming events from a Google Calendar, ordered by start time.
mindstudio.listGoogleCalendarEvents({ limit, exportType }) → Result
List upcoming events from a Google Calendar, ordered by start time.
Parameters
connectionId
string
Google OAuth connection ID
limit
number
RequiredMaximum number of events to return (default: 10)
exportType
string
RequiredFormat for the variable output: "json" or "text"
jsontext
calendarId
string
Calendar ID (defaults to "primary" if omitted)
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.listGoogleCalendarEvents({ limit: /* ... */, exportType: /* ... */ });