DomainTldInfo
From NETIM
(Difference between revisions)
m (Text replace - "API Version 1 (Recommended)" to "API Version 1 (Deprecated)") |
|||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:Functions]] | [[Category:Functions]] | ||
+ | |||
+ | |||
+ | <tabs> | ||
+ | <tab name="API Version 2 (Recommended)"> | ||
+ | |||
+ | {| class="wikitable" style="width: 200px;" | ||
+ | ! Release | ||
+ | ! Runtime | ||
+ | |- | ||
+ | |API >= 2.0|| Synchronous | ||
+ | |} | ||
+ | |||
+ | |||
+ | '''Description''' | ||
+ | |||
+ | Returns all available operations for a given TLD | ||
+ | |||
+ | [[StructDomainTldInfo]] domainTldInfo(string idSession, string tld) | ||
+ | |||
+ | |||
+ | |||
+ | '''Parameters''' | ||
+ | {| class="wikitable" style="width: 700px;" | ||
+ | ! Format | ||
+ | ! Variable | ||
+ | ! Description | ||
+ | ! Notes | ||
+ | |- | ||
+ | |style="width: 100px;" | string (32)|| style="width: 150px;" | idSession || style="width: 150px" | Session ID || style="width: 300px" | | ||
+ | |- | ||
+ | |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 ''' | ||
+ | <source lang="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); | ||
+ | } | ||
+ | ?> | ||
+ | </source > | ||
+ | |||
+ | </tab> | ||
+ | <tab name="API Version 1 (Deprecated)"> | ||
+ | |||
{| class="wikitable" style="width: 200px;" | {| class="wikitable" style="width: 200px;" | ||
! Release | ! Release | ||
Line 10: | Line 87: | ||
'''Description''' | '''Description''' | ||
− | Returns all | + | Returns all available operations for a given TLD |
[[StructDomainTldInfo]] domainTldInfo(string idSession, string tld) | [[StructDomainTldInfo]] domainTldInfo(string idSession, string tld) | ||
Line 25: | Line 102: | ||
|style="width: 100px;" | string (32)|| style="width: 150px;" | idSession || style="width: 150px" | Session ID || style="width: 300px" | | |style="width: 100px;" | string (32)|| style="width: 150px;" | idSession || style="width: 150px" | Session ID || style="width: 300px" | | ||
|- | |- | ||
− | |string (255)|| tld|| Extension || ''in | + | |string (255)|| tld|| Extension || ''in uppercase without dot'' |
|} | |} | ||
Line 47: | Line 124: | ||
<source lang="php"> | <source lang="php"> | ||
<?php | <?php | ||
− | $clientSOAP = new SoapClient("http:// | + | $clientSOAP = new SoapClient("http://URL.wsdl"); |
try | try | ||
{ | { | ||
− | $idSession = $ | + | $idSession = $clientSOAP->login("XXXX", "XXXX", "EN"); |
− | $StructDomainTldInfo = $ | + | $StructDomainTldInfo = $clientSOAP->domainTldInfo($idSession, "com"); |
echo "<pre>"; | echo "<pre>"; | ||
print_r($StructDomainTldInfo); | print_r($StructDomainTldInfo); | ||
Line 59: | Line 136: | ||
catch(SoapFault $fault) | catch(SoapFault $fault) | ||
{ | { | ||
− | echo "Exception : " .$ | + | echo "Exception : " .$fault->getMessage(). "\n"; |
} | } | ||
if(isset($idSession)) | if(isset($idSession)) | ||
{ | { | ||
− | $ | + | $clientSOAP->logout($idSession); |
} | } | ||
?> | ?> | ||
</source > | </source > | ||
+ | |||
+ | </tab> | ||
+ | </tabs> |
Latest revision as of 15:49, 2 August 2017
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
[edit] 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
[edit] 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); } ?>