mirror of
https://github.com/google/nomulus.git
synced 2025-07-26 04:28:34 +02:00
This also incorporates general improvements and additions to the existing EPP lifecycle tests around domain deletion. As a refresher: There is a 5 day add grace period (AGP) following domain creation. Domains that are deleted during that period have their create costs (but not EAP costs) refunded. This deletion takes place immediately. Refunds are implemented by issuing a Cancellation for the associated OneTime billing event. Domains that are deleted after AGP ends first go through a 30 day redemption grace period followed by a 5 day pending deletion period. No create fees are refunded in this case. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=179597874
24 lines
852 B
XML
24 lines
852 B
XML
<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>example.tld</domain:name>
|
|
<domain:period unit="y">2</domain:period>
|
|
<domain:registrant>jd1234</domain:registrant>
|
|
<domain:contact type="admin">sh8013</domain:contact>
|
|
<domain:contact type="tech">sh8013</domain:contact>
|
|
<domain:authInfo>
|
|
<domain:pw>2fooBAR</domain:pw>
|
|
</domain:authInfo>
|
|
</domain:create>
|
|
</create>
|
|
<extension>
|
|
<fee:create xmlns:fee="urn:ietf:params:xml:ns:fee-0.6">
|
|
<fee:currency>USD</fee:currency>
|
|
<fee:fee>26.00</fee:fee>
|
|
<fee:fee description="Early Access Period">100.00</fee:fee>
|
|
</fee:create>
|
|
</extension>
|
|
<clTRID>ABC-12345</clTRID>
|
|
</command>
|
|
</epp>
|