Chete
05/24/2025, 9:32 PMChete
05/24/2025, 9:59 PMSahil
05/24/2025, 11:30 PMChete
05/24/2025, 11:44 PMChete
05/24/2025, 11:47 PMPraveen Nair
05/25/2025, 5:29 AMPraveen Nair
05/25/2025, 5:59 AMChete
05/25/2025, 9:17 AMVapi Support Bot
05/25/2025, 9:18 AMtimeZone
parameter, but it does not guarantee that tool_call_result will always return times in your requested timezone—UTC output is possible.
As a temporary workaround, you can convert UTC times to your local timezone (e.g., Europe/Madrid) in your application before presenting them to users:
python
from datetime import datetime
import pytz
utc_time = datetime.fromisoformat("2025-05-29T11:00:00+00:00")
local_time = utc_time.astimezone(pytz.timezone("Europe/Madrid"))
print(local_time.strftime("%Y-%m-%d %H:%M"))
Please continue to monitor your support ticket for a permanent fix from the Vapi team.
Source:
- [Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Chete
05/25/2025, 10:36 AMVapi Support Bot
05/25/2025, 10:38 AMtimeZone
should result in consistent local times, but the Vapi documentation confirms that UTC output is possible in tool_call_result
.
As a temporary workaround, convert UTC times to your local timezone before presenting them to users:
python
from datetime import datetime
import pytz
utc_time = datetime.fromisoformat("2025-05-29T11:00:00+00:00")
local_time = utc_time.astimezone(pytz.timezone("Europe/Madrid"))
print(local_time.strftime("%Y-%m-%d %H:%M"))
Please continue to monitor your support ticket for updates, as a permanent fix may be implemented by the Vapi team in the future.
Source:
- [Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Chete
05/26/2025, 11:27 AMVapi Support Bot
05/26/2025, 11:28 AMPraveen Nair
05/26/2025, 1:30 PMPraveen Nair
05/27/2025, 6:25 AMChete
05/27/2025, 4:17 PMVapi Support Bot
05/27/2025, 4:17 PMPraveen Nair
05/28/2025, 2:54 AMVapi Support Bot
05/28/2025, 11:01 AMpython
from datetime import datetime
import pytz
utc_time = datetime.fromisoformat("2025-06-04T16:00:00+00:00")
local_time = utc_time.astimezone(pytz.timezone("Europe/Madrid"))
print(local_time.strftime("%Y-%m-%d %H:%M"))
This ensures appointment slots are shown in the correct local time until a permanent fix is released.
[See documentation](https://docs.vapi.ai/tools/google-calendar)
Source:
- [Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Vapi Support Bot
05/28/2025, 11:18 AMpython
from datetime import datetime
import pytz
utc_time = datetime.fromisoformat("2025-06-04T16:00:00+00:00")
local_time = utc_time.astimezone(pytz.timezone("Europe/Madrid"))
print(local_time.strftime("%Y-%m-%d %H:%M"))
This ensures appointment slots are shown in the correct local time until a permanent fix is released.
[See documentation](https://docs.vapi.ai/tools/google-calendar)
Source:
- [Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Vapi Support Bot
05/28/2025, 11:18 AMpython
from datetime import datetime
import pytz
utc_time = datetime.fromisoformat("2025-06-04T16:00:00+00:00")
local_time = utc_time.astimezone(pytz.timezone("Europe/Madrid"))
print(local_time.strftime("%Y-%m-%d %H:%M"))
This ensures appointment slots are shown in the correct local time until a permanent fix is released.
[See documentation](https://docs.vapi.ai/tools/google-calendar)
Source:
- [Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Chete
05/28/2025, 12:14 PMChete
05/28/2025, 12:22 PMChete
05/28/2025, 4:21 PMChete
05/28/2025, 4:22 PMVapi Support Bot
05/28/2025, 4:23 PMpython
from datetime import datetime
import pytz
utc_time = datetime.fromisoformat("2025-06-04T16:00:00+00:00")
local_time = utc_time.astimezone(pytz.timezone("Europe/Madrid"))
print(local_time.strftime("%Y-%m-%d %H:%M"))
This ensures appointment slots are shown in the correct local time until a permanent fix is released.
[See documentation](https://docs.vapi.ai/tools/google-calendar)
Source:
- [Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Vapi Support Bot
05/28/2025, 4:23 PMpython
from datetime import datetime
import pytz
utc_time = datetime.fromisoformat("2025-06-04T16:00:00+00:00")
local_time = utc_time.astimezone(pytz.timezone("Europe/Madrid"))
print(local_time.strftime("%Y-%m-%d %H:%M"))
This ensures appointment slots are shown in the correct local time until a permanent fix is released.
[See documentation](https://docs.vapi.ai/tools/google-calendar)
Source:
- [Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Vapi Support Bot
05/28/2025, 4:23 PMtimeZone
is set to "Europe/Madrid" and all datetime fields use ISO 8601 with the correct offset. If you continue to see mixed or incorrect timezones in the tool response, the recommended next step is to contact Vapi support or join the [Discord community](https://discord.gg/pUFNcf2WmH) for direct troubleshooting, as the documentation does not list a specific fix for this issue.
[See Google Calendar Integration Docs](https://docs.vapi.ai/tools/google-calendar)
Source:
- [Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)Chete
05/28/2025, 9:03 PMVapi Support Bot
05/28/2025, 9:05 PMChete
05/28/2025, 9:09 PMVapi Support Bot
05/28/2025, 9:11 PMgoogle_calendar_check_availability_tool
. The only official workaround is manual conversion of UTC times to your local timezone. While escalation is possible via support or Discord, the documentation does not guarantee that this will result in a permanent solution or provide a timeline for one ([Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)).
Clarifying question:
Are you considering alternative solutions only if a permanent fix cannot be confirmed within a specific timeframe, or do you have a hard deadline for your deployment decision?
Sources:
- [Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)
- [Vapi Support Documentation](https://docs.vapi.ai/support)Chete
05/28/2025, 9:19 PMVapi Support Bot
05/28/2025, 9:20 PMgoogle_calendar_check_availability_tool
. The only official workaround is manual conversion of UTC times to your local timezone. You may escalate this issue to Vapi support or the [Discord community](https://discord.gg/pUFNcf2WmH), but the documentation does not guarantee a permanent solution or provide a timeline for one. If a permanent fix is critical for your deployment, considering alternative solutions may be necessary.
Sources:
- [Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)
- [Vapi Support Documentation](https://docs.vapi.ai/support)
Sources:
- [Google Calendar Integration Documentation](https://docs.vapi.ai/tools/google-calendar)
- [Vapi Support Documentation](https://docs.vapi.ai/support)Praveen Nair
05/29/2025, 1:49 AM