Podio API Documentation

Items: Export items

POST /item/app/{app_id}/export/{exporter}

Creates a batch for exporting the items. Valid exporters are currently "xls" and "xlsx".

Usage
PHP Client
PodioItem.php
PodioItem::export( $app_id, $exporter, $attributes = array() );
Ruby Gem
item.rb
Podio::Item.export( app_id, exporter, options = {} )
Parameters
app_id*
Required.
exporter*
Required.
Request { "limit": The maximum number of items to export, if any, "offset": The offset into the list of items to export, "view_id": The id of the view to use, 0 means last used view, blank means no view "sort_by: "The sorting order if not using predefined filter, "sort_desc": True if sorting should be descending, false otherwise, "filters": The list of filters to apply, see the filtering area for details
"split_email_by_type" : False if email fields should be grouped together, True (default) otherwise
"split_phone_by_type" :False if email fields should be grouped together, True (default) otherwise 
}
Response { "batch_id": The id of the batch created for this export }

Sandbox

The sandbox only handles GET operations for now.