How does the EPP messages look like which your EPP-server sends when a domain or contact is deleted? - Knowledgebase / Tech / EPP messages - Support Portal | Registry Services

How does the EPP messages look like which your EPP-server sends when a domain or contact is deleted?

Updated 5 Apr, 2020

The EPP message sent from our EPP server if a domain or contact is deleted are formatted as below. If a domain is deleted, <iis: transferNotify /> will be sent to the leaving registrar.

Deleted domain name:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd"
    xmlns="urn:ietf:params:xml:ns:epp-1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <response>
        <result code="1301">
            <msg>Command completed successfully; ack to dequeue</msg>
        </result>
        <msgQ count="3" id="3549615">
            <qDate>2020-03-26T04:04:24.0Z</qDate>
            <msg lang="en">Domain deleted</msg>
        </msgQ>
        <resData xmlns="urn:ietf:params:xml:ns:epp-1.0">
            <iis:deleteNotify xsi:schemaLocation="urn:se:iis:xml:epp:iis-1.2 iis-1.2.xsd"
                xmlns:iis="urn:se:iis:xml:epp:iis-1.2"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <dom:delete xmlns:dom="urn:ietf:params:xml:ns:domain-1.0">
                    <dom:name>example.se</dom:name>
                </dom:delete>
            </iis:deleteNotify>
        </resData>
        <trID>
            <clTRID>6e5e8657-601e-4208-82f8-0b7338dc5e50</clTRID>
            <svTRID>622062788</svTRID>
        </trID>
    </response>
</epp>

Deleted contact:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd"
    xmlns="urn:ietf:params:xml:ns:epp-1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <response>
        <result code="1301">
            <msg>Command completed successfully; ack to dequeue</msg>
        </result>
        <msgQ count="1" id="3748081">
            <qDate>2020-04-29T13:51:32.0Z</qDate>
            <msg lang="en"></msg>
        </msgQ>
        <resData xmlns="urn:ietf:params:xml:ns:epp-1.0">
            <iis:deleteNotify xsi:schemaLocation="urn:se:iis:xml:epp:iis-1.2 iis-1.2.xsd"
                xmlns:iis="urn:se:iis:xml:epp:iis-1.2"
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <con:delete xmlns:con="urn:ietf:params:xml:ns:contact-1.0">
                    <con:id>qpvaxm0001-08832</con:id>
                </con:delete>
            </iis:deleteNotify>
        </resData>
        <trID>
            <clTRID>E8GPtwbMgtxR</clTRID>
            <svTRID>622149748</svTRID>
        </trID>
    </response>
</epp>