2017-01-04 20 views
0

我正在尝试使用ASP.NET Web API集成podio api。我已经通过https://developers.podio.com,并在该连接的帮助下连接到我的podio应用程序,并获得了其文件&。使用C#中的应用程序项ID获取跑道API中的项目的集合#

我正在使用AppItemId使用AppId &单个项目获取项目的集合。 我可以使用fieldId过滤项目。

我的问题是,

  1. 是否有任何选项可用来获得在过滤器使用AppItemId项目的集合?

  2. 我们可以为应用程序配置唯一的ID。 如果我配置了唯一的ID,那么如何通过API使用唯一的ID获取物品?

  3. 如何获得页面明智的收集项目。

+0

哪些数据将通过API来时,你得到使用的appid项目的集合。 – Thili77

+0

在收集它会给过滤器的数量,项目和总数。每个项目都会有特定的应用信息,如appItemId,字段,文件,创建日期等。 –

回答

0

首先有一个C#SDK的API波迪奥https://github.com/podio/podio-dotnet

1.Is there any option available to get collection of items using AppItemId in filter? 
=> No, an AppItemId will always return a single app item 
2. We can configure unique id for an app. If I configured unique id, then how can I get item(s) using unique id through API? 
=> You can set ExternalId for app items and then apply filter using this "external_id" to retrive these items 
3. How to get collection of items page wise. 
=> You can user offset and limit paramters which is available in item filter. 
+0

我可以在项目级别和字段级别看到外部ID。我试图为应用添加外部ID。但我找不到这样做的选择。请协助。 –

+0

为什么你需要外部应用程序ID,根据你的问题你需要唯一的应用程序ID,这个唯一的Id可以是AppId,它是由podio为每个应用程序自动生成的。 –

相关问题