Get domain product information

				
					array domainProductInfo(string idSession, string tld)
				
			

Return all information for a given extension / tld.

REQUIRED


  • idSession string (32)
    Session ID.
  • tld string (255)
    Extension (without leading dot).

    Example: uk / co.uk


An Array containing information about the domain’s product

$clientSOAP = new SoapClient('http://URL.wsdl');

try {
      $idSession = $clientSOAP->sessionOpen('AA001_user', 'xxxxxxxxxx');
      $productInfo = $clientSOAP->domainProductInfo($idSession, 'com');
      print_r($productInfo);

} catch (SoapFault $fault) {
      echo "Exception: " . $fault->getMessage() . "\n";
}

if (isset($idSession)) {
      $clientSOAP->sessionClose($idSession);
}