Node referenceCalendar
CALENDAR_CREATE_EVENT
Create a Google Calendar event with attendees.
What it does
Create a Google Calendar event with attendees.
Inputs & outputs
| Input handle |
|---|
| title |
| description |
| location |
| start |
| end |
| attendees |
| Output handle |
|---|
| eventId |
| htmlLink |
Configuration
| Name | Type | Required |
|---|---|---|
| calendarGrantId | string | Yes |
| calendarId | string | No |
Example
Example
A booking form fires FORM_TRIGGER with the meeting details. Wire title → the meeting subject, start and end → the chosen ISO 8601 timestamps, and attendees → an array of attendee objects (e.g., [{ "email": "client@example.com" }]). Optionally set location → a video-conference URL and description → the agenda. The node returns eventId and htmlLink; store eventId in a Database node for later CALENDAR_UPDATE_EVENT or CALENDAR_CANCEL_EVENT calls, and send htmlLink to the attendee via SEND_MAIL as the calendar invite link.