Subreg EPP server documentation
[All Commands]

Info contact

Queries information about single contact object, identified by its id.

Input fields

  • id - handle of the contact (required)

Output fields

  • id - handle of the contact (required)
  • postalInfo-name - name of the person or company (required)
  • postalInfo-org - organisation, company
  • postalInfo-addr-street - street address (required)
  • postalInfo-addr-city - city (required)
  • postalInfo-addr-sp - state code
  • postalInfo-addr-cc - country code, ISO format (required)
  • voice - phone number in format +1.234567890 (required)
  • fax - fax number in format +1.234567890
  • email - email address (required)

Example


<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
 <command>
  <info>
   <contact:info xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
    <contact:id>G-000249</contact:id>
   </contact:info>
  </info>
  <clTRID>SUBREG20120218T010545Z544</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>
    <contact:infData xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
     <contact:id>G-000249</contact:id>
     <contact:postalInfo>
      <contact:name>John Doe</contact:name>
      <contact:org>Other Example Inc.</contact:org>
      <contact:addr>
       <contact:street>250 Example Dr.</contact:street>
       <contact:city>Dulles</contact:city>
       <contact:sp>VA</contact:sp>
       <contact:pc>20166-6503</contact:pc>
       <contact:cc>US</contact:cc>
      </contact:addr>
     </contact:postalInfo>
     <contact:voice>+1.7035555555</contact:voice>
     <contact:fax>+1.7035555556</contact:fax>
     <contact:email>jdoe@example.com</contact:email>
    </contact:infData>
   </resData>
   <trID>
    <clTRID>SUBREG20120218T010545Z544</clTRID>
    <svTRID>SUBREG20120218T010545Z640</svTRID>
   </trID>
  </response>
</epp>

Subreg EPP server documentation - version 1.0