Lift API Limit (100) in File class
Using the File class I get a JSON array with the info of all files, but it has a 100 files limit. Is there a way to lift the limit or any other method to get more files in the array or other arrays with the rest of the files?
-
You can see all attributes/params in the developer documentation. E.g.: https://developers.podio.com/doc/files/get-files-on-app-22472
So you'd do something like:
PodioFile::get_for_app( $app_id, array('offset' => 100, 'limit' => 100) );
to get the next 100 files
Please sign in to leave a comment.
Comments
5 comments