Google Calendar Event

Hi guys ! I created and event to create an agenda on google. It runs but the event as ex: for tomorrow at 10am, is marked today local time at google meet informing that meet will be tomorrow at 10am. See image bellow:

Tks a lot !

What is the error message (if any)?

Please share your workflow

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)

Share the output returned by the last node

Information on your n8n setup

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Tks Benjamin ! I realized that n8n is defined for New York time zone and I can’t change it (I’m using n8n on Cloudfy) and I’ve let explicit on prompt to use my time (GMT -3). Still fail. :frowning:

Hi @dzgdigital Welcome to the community!
Open any workflow then head over to the top right section, click on the 3 dots, then settings, there you will be able to edit that with the settings must be looking like this:


And now just tweak it however you want, the AI models are good but even it is hard for them to predict the timezone, so just configure it for yourself and things should be working fine. Cheers! :smile:

welcome to the n8n community @dzgdigital
I’d make sure the datetime sent to the node already includes an explicit timezone, for example a full ISO value with offset like 2026-04-10T10:00:00-03:00, or I’d normalize it first with the Luxon/Date & Time node using the correct workflow timezone.

If I were running n8n self-hosted, I’d also double-check the instance timezone and make sure GENERIC_TIMEZONE=America/Sao_Paulo is set correctly, since n8n uses that setting for date and time handling.

ref docs

Tks !

I realized that on cloudfy my n8n instance is set to New york but I’m unable to change..do you know if is it possible change it?

Tks a lot !

I realized that in n8n, at cloudfy, my istance is set to New York time zone, is it possible change it ?

@dzgdigital if you cannot change it , as it should not be happening because on any self hosted n8n that option can be easily tweaked, but for now if you cannot do that, i think you need to go down under the hood and SSH into the VPS and manually configure that env timezone variable. Although i think you could have just opened up n8n UI and select any workflow and then follow what i have said that might have fixed the issue. (basically doing it via UI)

@dzgdigital
If nothing works, you can always handle it by converting the timezone directly in your date/time expressions.

if you cannot change it , as it should not be happening because on any self hosted n8n that option can be easily tweaked, but for now if you cannot do that, i think you need to go down under the hood and SSH into the VPS and manually configure that env timezone variable. Although i think you could have just opened up n8n UI and select any workflow and then follow what i have said that might have fixed the issue. (basically doing it via UI)
stick war legacy skins

Tks a lot Tamy! Useful tips, I will check!