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
| Parameter | Type | Required | Description |
|---|---|---|---|
title | string | Yes | The name of the meeting, shown on the invite. |
start_date_time | string | Yes | When 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_time | string | Yes | When the meeting ends, for example 2024-01-15T11:00:00. Use the same time zone as the start time. |
time_zone | string | No | The time zone for the start and end times, for example America/New_York. Leave blank to use the times exactly as written. |
description | string | No | Notes or an agenda to show on the meeting invite. |
attendees | array | No | Email addresses of the people to invite. Each guest gets a calendar invitation with the meeting link. |
location | string | No | An 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"
}