Api\ServiceType\ApiService::ReportSuite_GetMarketingChannelRules PHP Method

ReportSuite_GetMarketingChannelRules() public method

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