Api\ServiceType\ApiService::ReportSuite_SaveMarketingChannels PHP Method

ReportSuite_SaveMarketingChannels() public method

Method to call the operation originally named ReportSuite.SaveMarketingChannels Meta informations extracted from the WSDL - documentation: Saves a set of marketing channels.
public ReportSuite_SaveMarketingChannels ( string $channels, string $rsid_list ) : integer | boolean
$channels string
$rsid_list string
return integer | boolean
    public function ReportSuite_SaveMarketingChannels($channels, $rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.SaveMarketingChannels', array($channels, $rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService