searchGoogleCalendarEvents
Search for events in a Google Calendar by keyword, date range, or both.
mindstudio.searchGoogleCalendarEvents({ exportType }) → Result
Searches a connected Google Calendar by keyword, date range, or both.
Parameters
query
string
Text search term
timeMin
string
Start of time range (ISO 8601)
timeMax
string
End of time range (ISO 8601)
calendarId
string
Calendar ID (defaults to "primary")
limit
number
Maximum number of events to return (default: 10)
exportType
string
RequiredFormat for the variable output: "json" or "text"
jsontext
connectionId
string
Google OAuth connection ID
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.searchGoogleCalendarEvents({ exportType: /* ... */ });