Api\ServiceType\ApiService::User_LoginEmailExists PHP Метод

User_LoginEmailExists() публичный Метод

Method to call the operation originally named User.LoginEmailExists Meta informations extracted from the WSDL - documentation: Determines if the supplied email address exists is tied to a Suite login.
public User_LoginEmailExists ( string $emailAddress ) : boolean
$emailAddress string
Результат boolean
    public function User_LoginEmailExists($emailAddress)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('User.LoginEmailExists', array($emailAddress)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService