Hi, I've been working on a script that pull my team's hours by person each week at a time.
I've been running into an issue where timelogs on edge dates don't show up as expected.
For example, when I query for May 5th - May 11th, the test timelog for May 11th isn't being returned.
Here's the API parameters in use:
{me=true, trackedDate={start=2025-05-05, end=2025-05-11}}
Here's the output (8hrs on 2025-05-11 is missing):

However, when I specify timestamps, which the documentation states are optional, the correct timelog data is returned.
Here's the API parameters with timestamps:
{me=true, trackedDate={end=2025-05-11T23:59:59, start=2025-05-05T00:00:00}}
And here's the output:

Are others noticing this, too? Is this a widespread issue in the documentation/API? Should I always be treating date range timestamps as required?