Subreg EPP server documentation
[All Commands]

Login

Authenticates client with username and password and allows further processing of contact and domain requests. Session is valid until closing the TCP connection or sending <logout> request.

Input fields

  • clID - your Subreg.CZ login (you can use your admin account instead of username in format admin#username for login, more info in manual for SOAP Login) (required)
  • pw - password for this login (required)
  • options - version specification, only version 1.0 and language 'en' valid (required)
  • svcs - list of required namespaces, check is performed, but not mandatory, we recommend to specify correct namespaces for future purposes (required)

Example


<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
 <command>
  <login>
   <clID>yourlogin</clID>
   <pw>yoursecret</pw>
   <options>
    <version>1.0</version>
    <lang>en</lang>
   </options>
   <svcs>
    <objURI>urn:ietf:params:xml:ns:domain-1.0</objURI>
    <objURI>urn:ietf:params:xml:ns:contact-1.0</objURI>
    <objURI>http://www.subreg.cz/epp/order-1.0</objURI>
    <svcExtension>
     <extURI>http://www.subreg.cz/epp/subreg-1.0</extURI>
    </svcExtension>
   </svcs>
  </login>
  <clTRID>SUBREG20120218T003906Z338</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>
   <trID>
    <clTRID>SUBREG20120218T003906Z338</clTRID>
    <svTRID>SUBREG20120218T003906Z435</svTRID>
   </trID>
  </response>
</epp>

Subreg EPP server documentation - version 1.0