Jan 17, 2020 09:02 AM
Hello,
I have a Date column
I see 10am in Airtable Grid view.
This setup I have for two bases, but via API (Node.js SDK) I receive 8am from one base, and 9am from the other.
Tried the GET request option timeZone, but it doesnt change a thing.
Is there any timezone settings for the base I am missing?
Thanks for help!
Jan 17, 2020 03:15 PM
Is it possible your API results are simply showing the GMT date?
Pretty sure the API is going to return GMT (Zulu) because all databases require that you render to your locale (whatever that may be).
As far as other mysteries, fields can be set to map a common time for all users in Airtable’s formatting options. I’ll bet that’s why you see the one hour diff on some tests. As such, users in two different time zones could see the same timestamp on a record.
Jan 20, 2020 03:02 AM
[quote=“Bill.French, post:2, topic:26851”]
Is it possible your API results are simply showing the GMT date?
Pretty sure the API is going to return GMT (Zulu) because all databases require that you render to your locale (whatever that may be).
As far as other mysteries, fields can be set to
I see your point, and I totally agree with the API returning in Zulu.
Ive investigated a bit further to find that
I can slighty see why now, but not really sure. The first is GMT+2, the latter GMT+1.
Switching the GMT flag does the trick though, thats what I needed all along! Thanks!