Api\ServiceType\ApiService::Company_ResetTokenCount PHP Method

Company_ResetTokenCount() public method

Method to call the operation originally named Company.ResetTokenCount Meta informations extracted from the WSDL - documentation: Resets the token count for the given auth key.
public Company_ResetTokenCount ( string $auth_key ) : integer | boolean
$auth_key string
return integer | boolean
    public function Company_ResetTokenCount($auth_key)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Company.ResetTokenCount', array($auth_key)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService