Api\ServiceType\ApiService::Permissions_Authenticate PHP Method

Permissions_Authenticate() public method

Method to call the operation originally named Permissions.Authenticate Meta informations extracted from the WSDL - documentation: Indicates whether or not the login is valid for this company.
public Permissions_Authenticate ( string $login, string $password ) : boolean
$login string
$password string
return boolean
    public function Permissions_Authenticate($login, $password)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Permissions.Authenticate', array($login, $password)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService