Info registrar[Link]
Purpose
to obtain registrar account information.
This command gives the registrar the possibility to verify in an automated fashion:
the account status.
the ‘hitpoint’ counter.
the moment when the registrar will be deblocked (‘blocked until’).
The registrar info command is composed according to the standard EPP syntax. Some components need further explanation:
<registrar version=”1.0”/> currently only version 1.0 is supported. It’s not necessary to mention the version as it defaults to “1.0”.
Example[Link]
info registrar command:
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
<command>
<info>
<registrar:info xmlns:registrar="http://www.dns.be/xml/epp/registrar-1.0"/>
</info>
<clTRID>info-registrar-112</clTRID>
</command>
</epp>
In the response you see the hitpoint status and account status:
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:registrar="http://www.dns.be/xml/epp/registrar-1.0" xmlns:dnsbe="http://www.dns.be/xml/epp/dnsbe-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<response>
<result code="1000">
<msg>Command completed successfully</msg>
</result>
<resData>
<registrar:infData/>
</resData>
<extension>
<dnsbe:ext>
<dnsbe:infData>
<dnsbe:registrar>
<dnsbe:amountAvailable>1013536.40</dnsbe:amountAvailable>
<dnsbe:hitPoints>
<dnsbe:nbrHitPoints>0</dnsbe:nbrHitPoints>
<dnsbe:maxNbrHitPoints>100</dnsbe:maxNbrHitPoints>
</dnsbe:hitPoints>
<dnsbe:nbrPromoCreditsAvailable xsi:nil="true"/>
</dnsbe:registrar>
</dnsbe:infData>
</dnsbe:ext>
</extension>
<trID>
<clTRID>info-registrar-112</clTRID>
<svTRID>dnsbe-0</svTRID>
</trID>
</response>
</epp>
The following information can be seen in the reply:
<amountAvailable> is the amount of money left in the registrar account which can be used to perform paying transactions on the registration system.
<hitPoints> contains information about the hitpoints:
<nbrHitpPoints> current number of hitpoints
<maxNbrHitPoints> the maximum number of hitpoints allowed
<blockedUntil> the date and time in UTC until when the account is blocked. This is only visible in case the registrar has exceeded its number of hitpoints
<dnsbe:nbrPromoCreditsAvailable> contains the number of promo credits available if there are any.