Response
;URL Interface
;Machine is SJL0VWRESELL_T
DomainName=
RRPCode=210
RRPText=Domain available
AuctionDate=
AuctionID=
Command=CHECK
Language=eng
ErrCount=0
ResponseCount=0
MinPeriod=1
MaxPeriod=10
Server=SJL0VWRESELL_T
Site=eNom
IsLockable=False
IsRealTimeTLD=True
TimeDifference=+00.00
ExecTime=0.797
Done=true
RequestDateTime=
;URL Interface
;Machine is SJL0VWRESELL_T1
Extension=successful
DomainName=
OrderID=157923122
RRPCode=200
RRPText=Command completed successfully
RegistryExpDate=
Command=EXTEND
Language=eng
ErrCount=0
ResponseCount=0
MinPeriod=1
MaxPeriod=10
Server=SJL0VWRESELL_T1
Site=eNom
IsLockable=True
IsRealTimeTLD=True
TimeDifference=+08.00
ExecTime=1.484
Done=true
RequestDateTime=
;URL Interface
;Machine is SJL0VWRESELL_T1
domainname=
domainnameid=152533676
expiration=
deletebydate=
deletetype=
restorable=True
renewbeforeexpiration=
registrar=eNom, Inc.
registrationstatus=Registered
purchase-status=Paid
belongsto=
partyid={BB4A2DE1-6485-45CB-A4FC-EE39BA0C1629}
escrowliftdate=
escrowhold=
website=1
phone=False
ipresolver=1
map=False
domainnameid=152533676
mobilizer=1117
mobilizersourcedomain=
EmailForwarding=0
EmailForwardExpDate=
EmailAutoRenew=
URLForwarding=0
URLForwardExpDate=
URLAutoRenew=
emailForwardingPrice=0.00
urlForwardingPrice=0.00
Command=GETDOMAININFO
Language=eng
ErrCount=0
ResponseCount=0
MinPeriod=1
MaxPeriod=10
Server=SJL0VWRESELL_T1
Site=eNom
IsLockable=True
IsRealTimeTLD=True
TimeDifference=+08.00
ExecTime=1.281
Done=true
RequestDateTime=
URL Interface
;Machine is SJL0VWRESELL_T
OrderID=157923110
RegistryCreateDate=
RegistryExpDate=
TotalCharged=8.95
RegistrantPartyID={1C3E82CA-FE3F-E011-B28A-005056BC7747}
RRPCode=200
RRPText=Command completed successfully - 157923110
Command=PURCHASE
Language=eng
ErrCount=0
ResponseCount=0
MinPeriod=1
MaxPeriod=10
Server=SJL0VWRESELL_T
Site=eNom
IsLockable=True
IsRealTimeTLD=True
TimeDifference=+08.00
ExecTime=1.469
Done=true
RequestDateTime=
;URL Interface
;Machine is SJL0VWRESELL_T
ID=1 Name=us_nexus Application=2 UserDefined=False Required=1 Description=Nexus Category IsChild=0
ID=12 Value=C11 Title=US Citizen Description=A natural person who is a US Citizen.
ID=13 Value=C12 Title=Permanent Resident Description=A natural person who is a Permanent Resident.
ID=14 Value=C21 Title=Business Entity Description=An entity or organization that is (i) incorporated within one of the fifty US states, the District of Columbia, or any of the US possessions or territories, or (ii) organized or otherwise constituted under the laws of a state of the US, the District of Columbia or any of its possessions and territories (including federal, state, or local government of the US, or a political subdivision thereof, and non-commercial organizations based in the US.).
ID=15 Value=C31 Title=Foreign Entity Description=
.
.
.
Command=GETEXTATTRIBUTES
Language=eng
ErrCount=0
ResponseCount=0
MinPeriod=1
MaxPeriod=10
Server=SJL0VWRESELL_T
Site=eNom
IsLockable=True
IsRealTimeTLD=True
TimeDifference=+07.00
ExecTime=1.813
Done=true
RequestDateTime=
Code Samples
Implementation in C#
using System;
using System.Xml;
class Program
{
static void Main(string[] args)
{
// URL for API request
// Load the API results into an XmlDocument object
var xmlDoc = new XmlDocument();
xmlDoc.Load(url);
// Read the results
var rrpCode = xmlDoc.SelectSingleNode("/interface-response/RRPCode").InnerText;
var rrpText = xmlDoc.SelectSingleNode("/interface-response/RRPText").InnerText;
// Perform actions based on results
switch (rrpCode) {
case "210":
Console.WriteLine("Domain available");
break;
case "211":
Console.WriteLine("Domain not available");
break;
default:
Console.WriteLine("{0} {1}", rrpCode, rrpText);
break;
}
Console.Read();
}
}
Implementation in PHP
<?php
// URL for API request
// Load the API results into a SimpleXML object
$xml = simplexml_load_file($url);
// Read the results
$rrpCode = $xml->RRPCode;
$rrpText = $xml->RRPText;
// Perform actions based on results
switch ($rrpCode) {
case 210:
echo "Domain available";
break;
case 211:
echo "Domain not available";
break;
default:
echo $rrpCode . ' ' . $rrpText;
break;
}
?>
Code Samples
Implementation in C#
using System;
using System.Xml;
class Program
{
static void Main(string[] args)
{
// URL for API request
// Load the API results into an XmlDocument object
var xmlDoc = new XmlDocument();
xmlDoc.Load(url);
// Read the results
var rrpCode = xmlDoc.SelectSingleNode("/interface-response/RRPCode").InnerText;
var rrpText = xmlDoc.SelectSingleNode("/interface-response/RRPText").InnerText;
// Perform actions based on results
if(System.Convert.ToInt32(rrpCode)==200)
Console.WriteLine("Command completed successfully");
else
Console.WriteLine("Extension failed");
Console.Read();
}
}
Implementation in PHP
<?php
// URL for API request
// Load the API results into a SimpleXML object
$xml = simplexml_load_file($url);
// Read the results
$rrpCode = $xml->RRPCode;
$rrpText = $xml->RRPText;
// Perform actions based on results
if($rrpCode==200)
echo "Command completed successfully";
else
echo "Extension failed";
?>
Code Samples
Implementation in C#
using System;
using System.Xml;
class Program
{
static void Main(string[] args)
{
// URL for API request
// Load the API results into an XmlDocument object
var xmlDoc = new XmlDocument();
xmlDoc.Load(url);
// Read the results
var errCount = xmlDoc.SelectSingleNode("/interface-response/ErrCount").InnerText;
// Perform actions based on results
if(System.Convert.ToInt32(errCount)==0)
Console.WriteLine("Error in getting domain information");
else
Console.WriteLine("Command completed successfully");
Console.Read();
}
}
Implementation in PHP
<?php
// URL for API request
// Load the API results into a SimpleXML object
$xml = simplexml_load_file($url);
// Read the results
$errCount = $xml->ErrCount;
// Perform actions based on results
if($errCount==0)
echo "Error in getting domain information";
else
echo "Command completed successfully";
?>
Code Samples
Implementation in C#
using System;
using System.Xml;
class Program
{
static void Main(string[] args)
{
// URL for API request
// Load the API results into an XmlDocument object
var xmlDoc = new XmlDocument();
xmlDoc.Load(url);
// Read the results
var rrpCode = xmlDoc.SelectSingleNode("/interface-response/RRPCode").InnerText;
var rrpText = xmlDoc.SelectSingleNode("/interface-response/RRPText").InnerText;
// Perform actions based on results
switch (rrpCode) {
case "200":
Console.WriteLine("Command completed successfully");
break;
case "540":
Console.WriteLine("Domain name not available");
break;
default:
Console.WriteLine("{0} {1}", rrpCode, rrpText);
break;
}
Console.Read();
}
}
Implementation in PHP
<?php
//URL for API request
//Load the API results into a SimpleXML object
$xml = simplexml_load_file($url);
//Read the results
$rrpCode = $xml->RRPCode;
$rrpText = $xml->RRPText;
// Perform actions based on results
switch ($rrpCode) {
case 200:
echo "Command completed successfully";
break;
case 540:
echo "Domain name not available";
break;
default:
echo $rrpCode . ' ' . $rrpText;
break;
}
?>