Api\ServiceType\ApiService::ReportSuite_AddCorrelations PHP Method

ReportSuite_AddCorrelations() public method

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