Api\ServiceType\ApiService::ReportSuite_GetSegments PHP Method

ReportSuite_GetSegments() public method

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