Lodol Docs

Google Meet

API actions for the Google Meet integration.

Google Meet

Schedule Google Meet calls with calendar invites.


Schedule meeting

Schedule a Google Meet meeting via Google Calendar with optional attendees.

Parameters

ParameterTypeRequiredDescription
titlestringYesTitle/summary of the meeting
start_date_timestringYesStart date and time in ISO 8601 format (e.g., 2024-01-15T10:00:00)
end_date_timestringYesEnd date and time in ISO 8601 format (e.g., 2024-01-15T11:00:00)
time_zonestringNoTime zone for the meeting (e.g., America/New_York)
descriptionstringNoDescription or agenda for the meeting
attendeesarrayNoList of attendee email addresses
locationstringNoPhysical location for the meeting

Response

{
  "end": {
    "dateTime": "2024-01-15T11:00:00-05:00",
    "timeZone": "America/New_York"
  },
  "hangoutLink": "https://meet.google.com/abc-defg-hij",
  "htmlLink": "https://calendar.google.com/event?eid=abc123",
  "id": "abc123def456",
  "start": {
    "dateTime": "2024-01-15T10:00:00-05:00",
    "timeZone": "America/New_York"
  },
  "summary": "Team Standup"
}

On this page