Podio API Documentation

Items: Filter items from space and app

POST /item/app/{app_id}/filter/

Filters the items and returns the matching items. Full details of the filtering options available can be found in the "Views" area.

Usage
PHP Client
PodioItem.php
PodioItem::filter( $app_id, $attributes = array(), $options = array() );
Ruby Gem
item.rb
Podio::Item.find_by_filter_values( app_id, filter_values, attributes = {} )
Parameters
app_id*
Required.
space_id

space_id to filter items from

Request {
"sort_by": The sort order to use,
"sort_desc": True to sort descending, false otherwise, "filters": The filters to apply { "{key}": The value for the key filtering, ... (more filters) }, "limit": The maximum number of items to return, defaults to 30, "offset": The offset into the returned items, defaults to 0, "remember": True if the view should be remembered, false otherwise }
Response

See the get items operation

Sandbox

The sandbox only handles GET operations for now.