Sort reports from Connect_PHP API
Summary
How can we sort reports we pull from the Connect_PHP APIContent
So we are using the Connect PHP api to pull our report and we can modify the filters but is there a way to modify to sort order of the report? Since we are only pulling like 10 at a time it would not be possible to sort after the results are returned.
Version
3.7Code Snippet
$ar= RNCPHP\AnalyticsReport::fetch($report_id); $language_filter= new RNCPHP\AnalyticsReportSearchFilter; $language_filter->Name = 'Language'; $language_filter->Values = array( $language ); $platform_filter= new RNCPHP\AnalyticsReportSearchFilter; $platform_filter->Name = 'Platform'; $platform_filter->Values = array( $platform ); $product_filter= new RNCPHP\AnalyticsReportSearchFilter; $product_filter->Name = 'Product';
0