Level 80
@emmanuelpcg Not in a server request. A timezone will only be sent if you send it from the client:
axios.post('/api/example', {
timezone: getTimezone(),
});
A request coming to your server will just have the time of the request. You can then use that time in your local timezone or UTC. A HTTP request has no concept of timezones.
1 like