Api\ServiceType\ApiService::ReportSuite_DeleteDefaultPage PHP Method

ReportSuite_DeleteDefaultPage() public method

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