我正在尝试从我的Podio应用中检索自特定日期以来更新的所有项目。
我在last_event_on
属性上尝试了https://api.podio.com/item/app/ {id} /过滤器API过滤,但API返回"error_description": "Invalid value \"last_event_on\" (string): Invalid filtering key"
我怎样才能做到这一点?
我可以创建一个自昨天起更新项目的视图,并且每天都会调用API /item/app/{app_id}/filter/{view_id}/
,但它似乎并不健全。我宁愿特定地传递我上次调用API的日期。
尼古拉斯
答案 0 :(得分:2)
在文档中找到解决方案。 可用的过滤器列在View文档中,而不是过滤器:https://developers.podio.com/doc/filters
使用last_edit_on
键过滤,该键与响应中的last_event_on
不同。
{
"filters":{
"last_edit_on": {
"from": "2017-07-10 18:27:03"
}
}
}