Info domain
Returns information about single domain.
Input fields
- name - full domain name (required)
Output fields
- name - full domain name (required)
- status - list of current statuses valid for this domain
- registrant - contact handle of the registrant of this domain
- contact - handles for admin, tech and billing contacts
- ns - nameservers for the domain
- host - delegated hosts on the domain (to specify glue records)
- crDate - date of initial registration of this domain
- upDate - date of latest modification of information related to this domain
- exDate - future date of expiration
- trDate - date of last successfull transfer
- authInfo-pw - authorization code
- param - additional TLD-specific parameters
Example
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <epp xmlns="urn:ietf:params:xml:ns:epp-1.0"> <command> <info> <domain:info xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"> <domain:name>yourdomain.cz</domain:name> </domain:info> </info> <clTRID>SUBREG20120218T022854Z979</clTRID> </command> </epp>
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <epp xmlns="urn:ietf:params:xml:ns:epp-1.0"> <response> <result code="1000"> <msg lang="en">Command completed successfully</msg> </result> <resData> <domain:infData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"> <domain:name>yourdomain.cz</domain:name> <domain:status s="ok"/> <domain:registrant>G-000249</domain:registrant> <domain:contact type="admin">G-000249</domain:contact> <domain:ns> <domain:hostAttr> <domain:hostName>ns.example.com</domain:hostName> </domain:hostAttr> <domain:hostAttr> <domain:hostName>ns.example.net</domain:hostName> </domain:hostAttr> </domain:ns> <domain:crDate>2012-02-18</domain:crDate> <domain:exDate>2014-02-18</domain:exDate> <domain:authInfo> <domain:pw>lbQZJemn</domain:pw> </domain:authInfo> </domain:infData> </resData> <extension> <subreg:infData xmlns:subreg="http://www.subreg.cz/epp/subreg-1.0"> <subreg:param name="trustee">1</subreg:param> </subreg:infData> </extension> <trID> <clTRID>SUBREG20120218T022854Z979</clTRID> <svTRID>SUBREG20120218T022856Z023</svTRID> </trID> </response> </epp>
Subreg EPP server documentation - version 1.0
|