Api\ServiceType\ApiService::ReportSuite_DeleteCorrelations PHP Method

ReportSuite_DeleteCorrelations() public method

Method to call the operation originally named ReportSuite.DeleteCorrelations Meta informations extracted from the WSDL - documentation: Deletes the specified data correlations
public ReportSuite_DeleteCorrelations ( string $rel_ids, string $rsid_list, string $size ) : boolean
$rel_ids string
$rsid_list string
$size string
return boolean
    public function ReportSuite_DeleteCorrelations($rel_ids, $rsid_list, $size)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.DeleteCorrelations', array($rel_ids, $rsid_list, $size)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService