Google Calendar
gcal_import_event
Import an event with a unique iCalUID. Used for importing events from external calendars or iCal files. Does not send notifications.
Remote node2flow/google-calendar
Other tools also called gcal_import_event?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"summary": {
"type": "string",
"description": "Event title/summary"
},
"end_date": {
"type": "string",
"description": "End date for all-day events (YYYY-MM-DD)"
},
"ical_uid": {
"type": "string",
"description": "Unique iCalendar UID for the event (e.g., \"[email protected]\")"
},
"location": {
"type": "string",
"description": "Event location"
},
"start_date": {
"type": "string",
"description": "Start date for all-day events (YYYY-MM-DD)"
},
"calendar_id": {
"type": "string",
"description": "Calendar ID to import into (use \"primary\" for the main calendar)"
},
"description": {
"type": "string",
"description": "Event description"
},
"end_date_time": {
"type": "string",
"description": "End time in RFC 3339 format for timed events"
},
"end_time_zone": {
"type": "string",
"description": "Time zone for end time"
},
"start_date_time": {
"type": "string",
"description": "Start time in RFC 3339 format for timed events"
},
"start_time_zone": {
"type": "string",
"description": "Time zone for start time"
}
}
}