?
updateGoogleCalendarEvent
Update an existing event on a Google Calendar. Only specified fields are changed.
mindstudio.updateGoogleCalendarEvent({ eventId }) → Result
Update an existing event on a Google Calendar. Only specified fields are changed.
Parameters
connectionId
string
Google OAuth connection ID
eventId
string
RequiredGoogle Calendar event ID to update
summary
string
Updated event title
description
string
Updated event description
location
string
Updated event location
startDateTime
string
Updated start time in ISO 8601 format
endDateTime
string
Updated end time in ISO 8601 format
attendees
string
Updated attendee email addresses (one per line, replaces all existing attendees)
calendarId
string
Calendar ID (defaults to "primary" if omitted)
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.updateGoogleCalendarEvent({ eventId: /* ... */ });