Lodol Docs

Google Meet

API actions for the Google Meet integration.

Google Meet

Create Google Meet video calls and send calendar invites.


Schedule meeting

Create a Google Meet video call and add it to your Google Calendar. Anyone you invite gets a calendar invitation with the link to join.

Parameters

ParameterTypeRequiredDescription
titlestringYesThe name of the meeting, shown on the invite.
start_date_timestringYesWhen the meeting starts, for example 2024-01-15T10:00:00. Set the time zone below, or include an offset like 2024-01-15T10:00:00-05:00.
end_date_timestringYesWhen the meeting ends, for example 2024-01-15T11:00:00. Use the same time zone as the start time.
time_zonestringNoThe time zone for the start and end times, for example America/New_York. Leave blank to use the times exactly as written.
descriptionstringNoNotes or an agenda to show on the meeting invite.
attendeesarrayNoEmail addresses of the people to invite. Each guest gets a calendar invitation with the meeting link.
locationstringNoAn optional place for the meeting, useful when some guests join in person.

Response

{
  "end": "2024-01-15T11:00:00-05:00",
  "event_id": "abc123def456",
  "event_link": "https://calendar.google.com/event?eid=abc123",
  "meeting_link": "https://meet.google.com/abc-defg-hij",
  "start": "2024-01-15T10:00:00-05:00",
  "title": "Team Standup"
}

On this page