Reference
Remy Reference/agent/createGoogleCalendarEvent
?

createGoogleCalendarEvent

Create a new event on a Google Calendar.
mindstudio.createGoogleCalendarEvent({ summary, startDateTime, endDateTime }) → Result

Create a new event on a Google Calendar.

Parameters
connectionId
string
Google OAuth connection ID
summary
string
RequiredEvent title
description
string
Event description
location
string
Event location
startDateTime
string
RequiredStart time in ISO 8601 format
endDateTime
string
RequiredEnd time in ISO 8601 format
attendees
string
Attendee email addresses, one per line
addMeetLink
boolean
Whether to attach a Google Meet video call link
calendarId
string
Calendar ID (defaults to "primary" if omitted)
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.createGoogleCalendarEvent({
  summary: /* ... */,
  startDateTime: /* ... */,
  endDateTime: /* ... */
});