Get timelogs by account returns me wrong dates
Hi, guys, I am using this service but the response contains dates which don't correspond, for example, the dates are for one month before. I don't understand why.
Examples response
"trackedDate": "2017-05-18",
"trackedDate": "2017-05-17",
Hi Marco, thanks so much for reaching out, I just wanted to let you know that I'm moving this post to our API section and one of our API gurus is going to take a look!
Hi Marco! From the first look it seems like your parameters are not recognized by Wrike for some reason. What tool are you using for your calls? Could you please make sure parameters are url-encoded and not passed in JSON body, for instance?
Hi Pavel,
I'm facing the same issue when trying to extract the time log for a certain period through Python code it gives me the time log before that date entry and in Postman it will give entries of that date along with entries of the date after.
Postman "https://www.wrike.com/api/v4/timelogs?trackedDate={"start":"2024-03-12"}&trackedDate={"end":"2024-03-12"}"
This gives me the time log entries from 2024-03-12 to 2024-03-14.
Python code:
with open('access_token.txt', 'r') as file:
This gives me all the time log entries before 2024-03-12.
Thanks