Api\ServiceType\ApiService::ReportSuite_DeleteKeyVisitors PHP Method

ReportSuite_DeleteKeyVisitors() public method

Method to call the operation originally named ReportSuite.DeleteKeyVisitors Meta informations extracted from the WSDL - documentation: deletes a list of key visitors for the selected report suites
public ReportSuite_DeleteKeyVisitors ( string $key_visitors, string $rsid_list ) : boolean
$key_visitors string
$rsid_list string
return boolean
    public function ReportSuite_DeleteKeyVisitors($key_visitors, $rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.DeleteKeyVisitors', array($key_visitors, $rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService