Api\ServiceType\ApiService::ReportSuite_DeleteBaseURL PHP Method

ReportSuite_DeleteBaseURL() public method

Method to call the operation originally named ReportSuite.DeleteBaseURL Meta informations extracted from the WSDL - documentation: Deletes the base URL for the requested report suites.
public ReportSuite_DeleteBaseURL ( string $rsid_list ) : integer | boolean
$rsid_list string
return integer | boolean
    public function ReportSuite_DeleteBaseURL($rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.DeleteBaseURL', array($rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService