Api\ServiceType\ApiService::ReportSuite_DeleteMarketingChannels PHP Method

ReportSuite_DeleteMarketingChannels() public method

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