Api\ServiceType\ApiService::ReportSuite_GetMarketingChannels PHP Метод

ReportSuite_GetMarketingChannels() публичный метод

Method to call the operation originally named ReportSuite.GetMarketingChannels Meta informations extracted from the WSDL - documentation: Retrieves the marketing channels for the requested report suites.
public ReportSuite_GetMarketingChannels ( string $rsid_list ) : mchannels_list | boolean
$rsid_list string
Результат mchannels_list | boolean
    public function ReportSuite_GetMarketingChannels($rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.GetMarketingChannels', array($rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService