Api\ServiceType\ApiService::Company_GetTokenCount PHP Method

Company_GetTokenCount() public method

Method to call the operation originally named Company.GetTokenCount Meta informations extracted from the WSDL - documentation: Returns remaining tokens for a given auth key (note that this call also consumes a token).
    public function Company_GetTokenCount()
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Company.GetTokenCount'));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService