Adam Ginsburg
04/06/2025, 7:14 AMVapi Support Bot
04/06/2025, 7:16 AMmakeBookingtoCalendar
) and ensure that successful responses trigger the appropriate actions [(source)](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336719759965687923)
- Verify the Server URL configuration in your VAPI dashboard to ensure it's pointing to the correct endpoint [(source)](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336345690393149452)
### General Troubleshooting Steps
Some additional steps that might help:
- Review logs in VAPI and any integration platforms for error messages related to connectivity or data format problems [(source)](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336345690393149452)Vapi Support Bot
04/06/2025, 7:16 AMPraveen Nair
04/06/2025, 8:30 AMAdam Ginsburg
04/06/2025, 8:56 AMattendee
I tried adding as a param .. so not sure if that's messed up... but weirdly https://docs.vapi.ai/tools/google-calendar#google-calendar-create-event-tool does not include an attendee
or array of attendees.. .which is strange as it's a crritical missing component.Adam Ginsburg
04/06/2025, 8:57 AMAdam Ginsburg
04/06/2025, 10:03 AMModel called tool: google_calendar_tool({"summary":"Buzzy Expert Consultation","attendees":[{"email":"test@example.com"}],"time_zone":"Australia/Sydney","start_date_time":"2025-04-07T11:00:00+10:00","end_date_time":"2025-04-07T11:15:00+10:00"})
it's not inserting the email as an attendeeAdam Ginsburg
04/06/2025, 10:10 AMPraveen Nair
04/06/2025, 11:24 AMPraveen Nair
04/06/2025, 11:29 AMPraveen Nair
04/06/2025, 11:52 AMPraveen Nair
04/06/2025, 11:58 AMKings_big💫
04/06/2025, 2:37 PMAdam Ginsburg
04/06/2025, 6:57 PMKings_big💫
04/06/2025, 7:44 PMPraveen Nair
04/07/2025, 1:32 PMAdam Ginsburg
04/10/2025, 3:34 AMattendees
setAdam Ginsburg
04/10/2025, 8:27 AMPraveen Nair
04/11/2025, 9:11 PMconst createEventParams = {
summary: "Meeting Title",
description: "Meeting description",
start: {
dateTime: "2023-10-25T10:00:00-07:00",
timeZone: "America/Los_Angeles"
},
end: {
dateTime: "2023-10-25T11:00:00-07:00",
timeZone: "America/Los_Angeles"
},
attendees: [
{email: "attendee1@example.com"},
{email: "attendee2@example.com", optional: true}
]
};
This follows the Google Calendar API format where each attendee needs to be an object containing at least their email address.Kings_big💫
04/12/2025, 10:21 PMAdam Ginsburg
04/13/2025, 12:24 PMPraveen Nair
04/14/2025, 10:55 PM