Release domain

				
					StructOperationResponse domainRelease(string idSession, string domain)
				
			

Release a domain name (managed by the reseller) to its registrant (who will become a direct customer at Netim).

REQUIRED


  • idSession string (32)
    Session ID.
  • domain string (255)
    Domain name to be released.

An Object of type StructOperationResponse

<?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); 
} 
?>