Api\ServiceType\ApiService::Company_GetEndpoint PHP Method

Company_GetEndpoint() public method

Method to call the operation originally named Company.GetEndpoint Meta informations extracted from the WSDL - documentation: Returns the correct SOAP endpoint to be used for API calls
public Company_GetEndpoint ( string $company ) : string | boolean
$company string
return string | boolean
    public function Company_GetEndpoint($company)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Company.GetEndpoint', array($company)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService