?
getGoogleCalendarEvent
Retrieve a specific event from a Google Calendar by event ID.
mindstudio.getGoogleCalendarEvent({ eventId, exportType }) → Result
Retrieve a specific event from a Google Calendar by event ID.
Parameters
connectionId
string
Google OAuth connection ID
eventId
string
RequiredGoogle Calendar event ID to retrieve
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.getGoogleCalendarEvent({ eventId: /* ... */, exportType: /* ... */ });