Frost Gamer God
05/26/2025, 3:54 PMVapi Support Bot
05/26/2025, 3:55 PMstartDateTime
and endDateTime
values you are sending to the Google Calendar integration are in ISO 8601 format and explicitly include the "America/Chicago" timezone? This will help narrow down if the problem is with the datetime formatting or the timezone handling.
If you need more guidance, the [Vapi Google Calendar integration documentation](https://docs.vapi.ai/tools/google-calendar) has best practices for time zone handling.
Source:
- [Vapi Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Frost Gamer God
05/26/2025, 4:09 PMVapi Support Bot
05/26/2025, 4:09 PMstartDateTime
, endDateTime
, and timeZone
values that are being sent to the Google Calendar integration when the event is created? This will help determine if the issue is with the datetime formatting or the time zone handling.
For reference, all datetime fields should be in ISO 8601 format and the timeZone
should be explicitly set to "America/Chicago" as per the [Vapi Google Calendar integration documentation](https://docs.vapi.ai/tools/google-calendar).
Source:
- [Vapi Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Vapi Support Bot
05/26/2025, 4:09 PMstartDateTime
, endDateTime
, and timeZone
values that are being sent to the Google Calendar integration when the event is created? This will help determine if the issue is with the datetime formatting or the time zone handling.
For reference, all datetime fields should be in ISO 8601 format and the timeZone
should be explicitly set to "America/Chicago" as per the [Vapi Google Calendar integration documentation](https://docs.vapi.ai/tools/google-calendar).
Source:
- [Vapi Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Vapi Support Bot
05/26/2025, 4:10 PMgoogle.calendar.event.create
, you are passing the startDateTime
and endDateTime
fields in ISO 8601 format and explicitly include the "America/Chicago"
timezone in the timeZone
field of the payload. For example:
json
{
"summary": "Consultation",
"startDateTime": "2025-05-27T14:00:00",
"endDateTime": "2025-05-27T14:30:00",
"timeZone": "America/Chicago"
}
This ensures Google Calendar interprets the time correctly. Double-check that your prompt and tool logic are not just mentioning the timezone, but actually passing it in the event creation call.
Reference: [Vapi Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)
Source:
- [Vapi Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Vapi Support Bot
05/26/2025, 4:10 PMgoogle.calendar.event.create
, you are passing the startDateTime
and endDateTime
fields in ISO 8601 format and explicitly include the "America/Chicago"
timezone in the timeZone
field of the payload. For example:
json
{
"summary": "Consultation",
"startDateTime": "2025-05-27T14:00:00",
"endDateTime": "2025-05-27T14:30:00",
"timeZone": "America/Chicago"
}
This ensures Google Calendar interprets the time correctly. Double-check that your prompt and tool logic are not just mentioning the timezone, but actually passing it in the event creation call.
Reference: [Vapi Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)
Source:
- [Vapi Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Vapi Support Bot
05/26/2025, 4:10 PMtimeZone
field to "America/Chicago"
when creating the Google Calendar event. For example, ensure your event creation payload includes:
json
{
"summary": "Appointment",
"startDateTime": "2025-05-30T14:00:00",
"endDateTime": "2025-05-30T14:30:00",
"timeZone": "America/Chicago"
}
This ensures Google Calendar interprets the time correctly. Double-check that your prompt or backend logic always passes the correct timezone value when scheduling events.
[See Vapi Google Calendar integration best practices](https://docs.vapi.ai/tools/google-calendar).
Source:
- [Vapi Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Vapi Support Bot
05/26/2025, 4:10 PMtimeZone
field to "America/Chicago"
when creating the Google Calendar event. For example, ensure your event creation payload includes:
json
{
"summary": "Appointment",
"startDateTime": "2025-05-30T14:00:00",
"endDateTime": "2025-05-30T14:30:00",
"timeZone": "America/Chicago"
}
This ensures Google Calendar interprets the time correctly. Double-check that your prompt or backend logic always passes the correct timezone value when scheduling events.
[See Vapi Google Calendar integration best practices](https://docs.vapi.ai/tools/google-calendar).
Source:
- [Vapi Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Vapi Support Bot
05/26/2025, 4:10 PMstartDateTime
and endDateTime
in ISO 8601 format and include the timeZone
field as "America/Chicago"
. For example:
json
{
"summary": "Appointment",
"startDateTime": "2025-05-27T14:00:00",
"endDateTime": "2025-05-27T14:30:00",
"timeZone": "America/Chicago"
}
Double-check that your assistant's code or tool call includes these fields as shown above to ensure the correct time is reflected in Google Calendar.
[See best practices in the Vapi Google Calendar integration documentation.](https://docs.vapi.ai/tools/google-calendar)
Source:
- [Vapi Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Vapi Support Bot
05/26/2025, 4:10 PMstartDateTime
and endDateTime
in ISO 8601 format and include the timeZone
field as "America/Chicago"
. For example:
json
{
"summary": "Appointment",
"startDateTime": "2025-05-27T14:00:00",
"endDateTime": "2025-05-27T14:30:00",
"timeZone": "America/Chicago"
}
Double-check that your assistant's code or tool call includes these fields as shown above to ensure the correct time is reflected in Google Calendar.
[See best practices in the Vapi Google Calendar integration documentation.](https://docs.vapi.ai/tools/google-calendar)
Source:
- [Vapi Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Frost Gamer God
05/26/2025, 4:11 PMFrost Gamer God
05/26/2025, 4:15 PMPraveen Nair
05/26/2025, 4:47 PM