DomainRelease
De NETIM
Version | Exécution |
---|---|
API >= 2.0 | Synchrone |
Description
Libére un nom de domaine du revendeur au profit du propriétaire
StructOperationResponse domainRelease(string idSession, string domain)
Liste des paramètres
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Identifiant de la session | |
string (255) | domain | Nom de domaine à libérer |
Valeurs de retour
Une structure de type StructOperationResponse
Notes
Release d'un domaine
Exemples
Langage PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); $StructOperationResponse = $clientSOAP->domainRelease($idSession, "netim.com"); print_r($StructOperationResponse); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if(isset($idSession)) { $clientSOAP->sessionClose($idSession); } ?>
Version | Exécution |
---|---|
API > 1.0 | Asynchrone |
Description
Libére un nom de domaine du revendeur au profit du propriétaire
int domainRelease(string idSession, string domain)
Liste des paramètres
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Identifiant de la session | |
string (255) | domain | Nom de domaine à libérer |
Valeurs de retour
Un numéro d'opération
Notes
Release d'un domaine
Exemples
Langage PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->login("XXXX", "XXXX", "EN"); $trackingID = $clientSOAP->domainRelease($idSession, "netim.com"); echo($trackingID); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if(isset($idSession)) { $clientSOAP->logout($idSession); } ?>