How list all task id by deliverable
AnsweredI need list all id of an app deliverable. Thanks all!
This work, but only get 20 id:
$filtro = PodioItem::filter('1035892');
foreach ($filtro as $value) {
print "ID: ".$value->item_id.'<br />';
}
-
The documentation is at: https://developers.podio.com/doc/items/filter-items-4496747
You can set a
limit
to fetch more items. E.g.:$filtro = PodioItem::filter('1035892', array('limit' => 50));
Please sign in to leave a comment.
Comments
1 comment