Delete command
The <enum:delete> command can be used to cancel an ENUM registration. Nameservers cannot be explicitly deleted but are automatically deleted when no longer referenced.
<enum:delete> element
The <enum:delete> element contains the following sub-element:
- An <enum:E164Number> giving the first number of the ENUM registration to be deleted.
Examples
Example of an enum deletion
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
epp-1.0.xsd">
<command>
<delete>
<enum:delete
xmlns:enum="http://www.nominet.org.uk/epp/xml/nom-enum-2.0"
xsi:schemaLocation="http://www.nominet.org.uk/epp/xml/nom-enum-2.0
nom-enum-2.0.xsd">
<enum:E164Number>+441865332100</enum:E164Number>
</enum:delete>
</delete>
</command>
</epp>
Example of a successful enum deletion response
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
epp-1.0.xsd">
<response>
<result code="1000">
<msg>Command completed successfully</msg>
</result>
<trID>
<clTRID>ABC-12345</clTRID>
<svTRID>123456</svTRID>
</trID>
</response>
</epp>