mirror of
https://github.com/google/nomulus.git
synced 2025-08-05 09:21:49 +02:00
The extension itself isn't used for anything yet; allocation tokens can be passed for domain creates and checks but are ignored if present. This will be changed in a subsequent CL that adds AllocationToken entities and related logic. Usage of this extension in any other EPP flow will throw an UnsupportedExtensionException. The relevant spec is https://tools.ietf.org/html/draft-gould-allocation-token-04 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=181343188
18 lines
505 B
XML
18 lines
505 B
XML
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
|
<command>
|
|
<delete>
|
|
<domain:delete
|
|
xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
|
<domain:name>example.tld</domain:name>
|
|
</domain:delete>
|
|
</delete>
|
|
<extension>
|
|
<allocationToken:allocationToken
|
|
xmlns:allocationToken=
|
|
"urn:ietf:params:xml:ns:allocationToken-1.0">
|
|
abc123
|
|
</allocationToken:allocationToken>
|
|
</extension>
|
|
<clTRID>ABC-12345</clTRID>
|
|
</command>
|
|
</epp>
|