Community
Daylight Savings Time
Hello.
For API calls that span data over a 24 hour period, how does daylight savings work? For example, I'm looking at Get vehicle idling reports. The API can pull data over at most 24-hours. But if I look at data for Sun, Nov 3, 2024 (Fall back in USA), there's an extra hour. So if I set the start date as 2024-11-03T00:00:00-4:00 and the end date 2024-11-04T00:00:00-5:00, I get an error because that's 25 hours. I could solve this by just setting the end date to -4:00.
But programmatically, I also want to pull data for Mon 4th. On that call, I would set the start date as 2024-11-04T00:00:00-5:00 and the end date 2024-11-05T00:00:00-5:00. But since the 3rd was set at -4:00 and the 4th at -5:00, do I lose an hour of data between these two days? Or do I need to make an "intermediary" call also for that hour?