Api\ServiceType\ApiService::Report_CancelReport PHP Method

Report_CancelReport() public method

Method to call the operation originally named Report.CancelReport Meta informations extracted from the WSDL - documentation: Cancel a report request.
public Report_CancelReport ( string $reportID ) : integer | boolean
$reportID string
return integer | boolean
    public function Report_CancelReport($reportID)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Report.CancelReport', array($reportID)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService