Api\ServiceType\ApiService::DeliveryList_Delete PHP Method

DeliveryList_Delete() public method

Method to call the operation originally named DeliveryList.Delete Meta informations extracted from the WSDL - documentation: Delete a distribution list.
public DeliveryList_Delete ( string $dist_list_id ) : integer | boolean
$dist_list_id string
return integer | boolean
    public function DeliveryList_Delete($dist_list_id)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('DeliveryList.Delete', array($dist_list_id)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService