Api\ServiceType\ApiService::DataWarehouse_GetReportData PHP Method

DataWarehouse_GetReportData() public method

Method to call the operation originally named DataWarehouse.GetReportData Meta informations extracted from the WSDL - documentation: Obtain content for the given request
public DataWarehouse_GetReportData ( string $request_Id, string $rsid, string $start_row ) : Api\StructType\ApiData_warehouse_report | boolean
$request_Id string
$rsid string
$start_row string
return Api\StructType\ApiData_warehouse_report | boolean
    public function DataWarehouse_GetReportData($request_Id, $rsid, $start_row)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('DataWarehouse.GetReportData', array($request_Id, $rsid, $start_row)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService