DomainTldInfo
From NETIM
Release | Runtime |
---|---|
API >= 2.0 | Synchronous |
Description
Returns all available operations for a given TLD
StructDomainTldInfo domainTldInfo(string idSession, string tld)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | tld | Extension | in uppercase without dot |
The field Extension can take the following values: BE BF BI ......
Return
An object StructDomainTldInfo containing the Tld's informations
Notes
None
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); $StructDomainTldInfo = $clientSOAP->domainTldInfo($idSession, "COM"); echo "<pre>"; print_r($StructDomainTldInfo); echo "</pre>"; } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if(isset($idSession)) { $clientSOAP->sessionClose($idSession); } ?>
Release | Runtime |
---|---|
API > 1.2 | Synchronous |
Description
Returns all available operations for a given TLD
StructDomainTldInfo domainTldInfo(string idSession, string tld)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | tld | Extension | in uppercase without dot |
The field Extension can take the following values: BE BF BI ......
Return
An object StructDomainTldInfo containing the Tld's informations
Notes
None
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->login("XXXX", "XXXX", "EN"); $StructDomainTldInfo = $clientSOAP->domainTldInfo($idSession, "com"); echo "<pre>"; print_r($StructDomainTldInfo); echo "</pre>"; } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if(isset($idSession)) { $clientSOAP->logout($idSession); } ?>