Api\ServiceType\ApiService::Permissions_DeleteGroup PHP Method

Permissions_DeleteGroup() public method

Method to call the operation originally named Permissions.DeleteGroup Meta informations extracted from the WSDL - documentation: Removes the requested group from the company.
public Permissions_DeleteGroup ( string $groupid ) : integer | boolean
$groupid string
return integer | boolean
    public function Permissions_DeleteGroup($groupid)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Permissions.DeleteGroup', array($groupid)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService