I am following the API documentation. I am getting a collection of my team's updates successfully. Now I am trying to filter that request to only show updates posted in the past day, but I keep getting the following error:
{
"error":
{"class":"com.attask.common.InvalidParameterException",
"message":"Invalid Parameter: Search Parameter value \"updates:entryDate\"",
"title":null,
"msgKey":"exception.attask",
"attributes":[""],
"code":0
}
}
I have tried against both version 2.0 and 4.0 of the API. Here is my GET request:
/attask/api/v4.0/team/search?id=xxxx&fields=updates%2C updates:enteredByName%2C updates:iconName%2C updates:iconPath%2C updates:entryDate&updates:entryDate=%24%24TODAY-1d&updates:entryDate_Range=%24%24TODAY&updates:entryDate_Mod=between
Also, I did look at this question and have tried flipping the entryDate and entryDate_Range values both ways with no luck: AtTask Modifiers