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
| Parameter | Type | Required | Description |
|---|---|---|---|
title | string | Yes | Title/summary of the meeting |
start_date_time | string | Yes | Start date and time in ISO 8601 format (e.g., 2024-01-15T10:00:00) |
end_date_time | string | Yes | End date and time in ISO 8601 format (e.g., 2024-01-15T11:00:00) |
time_zone | string | No | Time zone for the meeting (e.g., America/New_York) |
description | string | No | Description or agenda for the meeting |
attendees | array | No | List of attendee email addresses |
location | string | No | Physical 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"
}