Knowledge Base

See below, two generic examples for registering domains during the Early Access phase.  One example shows the EPP commands for a name subject to claims, and the other example shows an Early Access registration not subject to Claims

If the domain is subject to claims, the  <launch:notice> is required in addition to the <launch:phase> extension.

EAP – Subject to claims

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
  <command>
    <create>
      <domain:create xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
        <domain:name>name.tld</domain:name>
        <domain:registrant>registrantID</domain:registrant>
        <domain:contact type="admin">adminID</domain:contact>
        <domain:contact type="tech">techID</domain:contact>
        <domain:authInfo>
          <domain:pw>password_1</domain:pw>
        </domain:authInfo>
      </domain:create>
    </create>
    <extension>
      <launch:create xmlns:launch="urn:ietf:params:xml:ns:launch-1.0">
        <launch:phase>claims</launch:phase>
        <launch:notice>
          <launch:noticeID>2c30e41b0000000000000008692</launch:noticeID>
          <launch:notAfter>2014-08-30T15:26:33.0Z</launch:notAfter>
          <launch:acceptedDate>2014-01-13T11:00:00.0Z</launch:acceptedDate>
        </launch:notice>
      </launch:create>
      <charge:agreement xmlns:charge="http://www.unitedtld.com/epp/charge-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.unitedtld.com/epp/charge-1.0 charge-1.0.xsd">
        <charge:set>
        <charge:category>earlyAccess</charge:category>
          <charge:type>fee</charge:type>
          <charge:amount command="create">2222</charge:amount>
        </charge:set>
      </charge:agreement>
    </extension>
    <clTRID>EppCon.131023.113904</clTRID>
  </command>
</epp>

Early Access Domain Create

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
  <command>
    <create>
      <domain:create xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
      <domain:name>name.TLD</domain:name>
      <domain:period unit="y">1</domain:period>
        <domain:registrant>registrantID</domain:registrant>
        <domain:contact type="admin">ContactID</domain:contact>
        <domain:contact type="tech">TechID</domain:contact>
        <domain:authInfo>
        <domain:pw>password_1</domain:pw>
        </domain:authInfo>
      </domain:create>
    </create>
    <extension>
      <charge:agreement xmlns:charge="http://www.unitedtld.com/epp/charge-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.unitedtld.com/epp/charge-1.0 charge-1.0.xsd">
        <charge:set>
        <charge:category>earlyAccess</charge:category>
          <charge:type>fee</charge:type>
          <charge:amount command="create">2222</charge:amount>
        </charge:set>
        <charge:set>
      </charge:agreement>
    </extension>
    <clTRID>EPP</clTRID>
  </command>
</epp