How to filter items updated since a specific date in podio -


i trying retrieve items podio app updated since specific date.

i tried https://api.podio.com/item/app/{id}/filter api filtering on last_event_on attribute api returns "error_description": "invalid value \"last_event_on\" (string): invalid filtering key"

how can achieve ?

i create view updated items since yesterday , call api /item/app/{app_id}/filter/{view_id}/ everyday not seem robust. rather pass specificaly date of last call api.

nicolas

found solution within documentation. available filters listed within view doc , not filter 1 : https://developers.podio.com/doc/filters

filter using last_edit_on key differs last_event_onin response.

{ "filters":{   "last_edit_on": {     "from": "2017-07-10 18:27:03"   } } }   

Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -