Api\ServiceType\ApiService::ReportSuite_GetCorrelations PHP Method

ReportSuite_GetCorrelations() public method

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