Podio:获取包含任务的项目

时间:2017-04-06 20:10:53

标签: podio

我正在尝试使用.Net API检索与Item关联的任务,但Item中的List始终为null。我正在使用app authentification

var item = Podio.ItemService.GetItem(podioGlobalId, false);
            if (item.Tasks == null)
            {
                //there are never any Tasks
            }

1 个答案:

答案 0 :(得分:1)

任务是独立的并且与项目相关联但不属于项目。因此,为了获得附加到项目的任务列表,请使用get tasks方法。它的文档在这里:https://developers.podio.com/doc/tasks/get-tasks-77949

原始http请求的使用示例:

GET https://api.podio.com/task/?reference=item:1234;item:5678