Register new domain during launch period

				
					StructOperationResponse domainCreateLP(string idSession, string domain, string idOwner, string idAdmin, string idTech, string idBilling, string ns1, string ns2, string ns3, string ns4, string ns5, int duration, string launchPhase)
				
			

Request the registration of a domain during a launch period.

REQUIRED


  • idSession string (32)
    Session ID.
  • domain string (255)
    Domain name to be registered.
  • idOwner string (12)
    ID of the owner contact (With “isOwner=1”).
  • idAdmin string (12)
    ID of the administrative contact (With “isOwner=0”).
  • idTech string (12)
    ID of the technical contact (With “isOwner=0”).
  • idBilling string (12)
    ID of the billing contact (With “isOwner=0”).
  • ns1 string (255)
    Name server DNS 1.
  • ns2 string (255)
    Name server DNS 2.
  • ns3 string (255)
    Name server DNS 3.
  • ns4 string (255)
    Name server DNS 4.
  • ns5 string (255)
    Name server DNS 5.
  • duration integer
    Duration (In years).
  • launchPhase string (255)
    Code of the launch period.

An Object of type StructOperationResponse

All important information relative to the domain registration applies. See register new domain

 

Find out more information concerning openings/launches for the requested extension on the product pages

Once requested, you will get an operation in pending status. Netim will try to register the domain name during the corresponding phase.

 

launchPhase codes:

SR : Sunrise Period
LR1: Landrush Period 1
LR2: Landrush Period 2
LR3: Landrush Period 3
GA : General availability

<?php 
$clientSOAP = new SoapClient("http://URL.wsdl");
 
try 
{ 
      $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); 
      $StructOperationResponse= $clientSOAP->domainCreateLP($idSession, "netim.xxx", "IDOWN", "IDADM", "IDTEC", "IDBIL", "ns1.netim.com", "ns2.netim.com", "", "", "", 1,"LR"); 
 
      print_r($StructOperationResponse); 
} 
catch(SoapFault $fault) 
{ 
      echo "Exception : " .$fault->getMessage(). "\n"; 
} 
 
if(isset($idSession)) 
{ 
      $clientSOAP->sessionClose($idSession); 
} 
?>