podio

Can podio's api filter item response with only a mini detail level for each item?

老子叫甜甜 提交于 2019-12-02 20:56:29
问题 My script needs to check from time to time that all items present in an app are recorded in its own db. Indeed even when using the podio hooks, it happens that my script and podio are getting desynchronised. It uses the filter item api call by batch of 100 of items. In this case the script doesn't need to know all the fields values, but only the basic informations: item_id, app, title, link and current_revision. I wonder if it's possible to set a query parameter in the filter function only

AuthenticateWithApp throwns NullReferenceException since today

雨燕双飞 提交于 2019-12-02 18:37:49
问题 Since today, we are facing a NullReferenceException when calling the AuthenticateWithApp-function in the .NET-Podio-Client (Newest Version 1.5.8). I couldn't see an update of the Podio-API or any downtime in the status-website. I guess it must be a problem inside the Podio API. Anybody with the same problem? Regards Thorsten 回答1: Stumbled upon that one too, today. Requests in postman worked Podio .NET library failed. It's caused by an API update by Podio, like @Sara said. Seems my system (and

Podio Php - limit the amount of item fields returned

笑着哭i 提交于 2019-12-02 17:00:35
问题 Is there any way that you can limit the fields that are retured when you filter for items in an app. Instead of returning all fields, I would like to return just the item-id and the title field 回答1: You can use fields parameter for that. More details on how it works and how else it could be used are right here: https://developers.podio.com/index/api in "Bundling responses using fields parameter" section. Using fields to bundle objects can be a way to drastically reduce the amount of API

Podio Php - limit the amount of item fields returned

戏子无情 提交于 2019-12-02 13:44:33
Is there any way that you can limit the fields that are retured when you filter for items in an app. Instead of returning all fields, I would like to return just the item-id and the title field You can use fields parameter for that. More details on how it works and how else it could be used are right here: https://developers.podio.com/index/api in "Bundling responses using fields parameter" section. Using fields to bundle objects can be a way to drastically reduce the amount of API requests you have to make. Most likely you are looking for fields=items.view(micro) parameter. Podio API will

AuthenticateWithApp throwns NullReferenceException since today

痴心易碎 提交于 2019-12-02 11:59:21
Since today, we are facing a NullReferenceException when calling the AuthenticateWithApp-function in the .NET-Podio-Client (Newest Version 1.5.8). I couldn't see an update of the Podio-API or any downtime in the status-website. I guess it must be a problem inside the Podio API. Anybody with the same problem? Regards Thorsten Stumbled upon that one too, today. Requests in postman worked Podio .NET library failed. It's caused by an API update by Podio, like @Sara said. Seems my system (and yours too) still defaults to Tls 1.0 Add this at beginning of Main(). This will force at least Tls 1.1.

Can podio's api filter item response with only a mini detail level for each item?

混江龙づ霸主 提交于 2019-12-02 10:24:16
My script needs to check from time to time that all items present in an app are recorded in its own db. Indeed even when using the podio hooks, it happens that my script and podio are getting desynchronised. It uses the filter item api call by batch of 100 of items. In this case the script doesn't need to know all the fields values, but only the basic informations: item_id, app, title, link and current_revision. I wonder if it's possible to set a query parameter in the filter function only only get the mini view of each item. This could improve greatly performances. You can use fields