Api\ServiceType\ApiService::Permissions_DeleteLogin PHP Method

Permissions_DeleteLogin() public method

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