Api\ServiceType\ApiService::Report_GetReport PHP Method

Report_GetReport() public method

Method to call the operation originally named Report.GetReport Meta informations extracted from the WSDL - documentation: Get status and data for a queued report.
public Report_GetReport ( string $reportID ) : Api\StructType\ApiReportResponse | boolean
$reportID string
return Api\StructType\ApiReportResponse | boolean
    public function Report_GetReport($reportID)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Report.GetReport', array($reportID)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService