ReportService::getReportDownloadURL PHP Method

getReportDownloadURL() public method

The report will be generated as a gzip archive, containing the report file itself.

public getReportDownloadURL ( $reportJobId, $exportFormat ) : the
return the URL for report file download
        public function getReportDownloadURL($reportJobId, $exportFormat)
        {
            $args = new GetReportDownloadURL($reportJobId, $exportFormat);
            $result = $this->__soapCall("getReportDownloadURL", array($args));
            return $result->rval;
        }