Api\ServiceType\ApiService::ReportSuite_DeleteIPAddressExclusions PHP Method

ReportSuite_DeleteIPAddressExclusions() public method

Method to call the operation originally named ReportSuite.DeleteIPAddressExclusions Meta informations extracted from the WSDL - documentation: Delete an IP exclusion entry for a given report suite.
public ReportSuite_DeleteIPAddressExclusions ( string $ip_list, string $rsid_list ) : integer | boolean
$ip_list string
$rsid_list string
return integer | boolean
    public function ReportSuite_DeleteIPAddressExclusions($ip_list, $rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.DeleteIPAddressExclusions', array($ip_list, $rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService