However every time I run it I get this error: created_on.after: Date must be in ISO-8601 (yyyy-mm-dd) format, not: 2015-02-11T21:00:34.889Z
It’s not a problem with authentication or anything else because if I remove the created_on.after parameter, the query works fine. I’ve tried using encodeURIComponent to encode the url but the exact same thing happens. What am I doing wrong?
I’m trying to pull a large list of tasks so I’m following the instructions in the pagination section of the Search tasks endpoint at this URL: Asana
So I’m getting the timestamp from Asana in the previous call and iterating through the listing 100 records at a time. As such, I’d expect the timestamp to be valid (and it is). That’s also the reason I can’t remove the timestamp portion, as that would defeat the purpose.
Could this be a big with the API?