Inhaltsverzeichnis dieser Seite

Beschreibung

Führt eine Löschung der angegebenen Domain bei der Registry durch. Löschaufträge werden zeitverzögert ausgeführt, daher erhälst du als Domain Delete Antwort immer "comand completed; action pending" und das Löschdatum.

Zusätzliche Informationen

  • Das Löschdatum einer laufenden Löschung (pendingDelete) kann per DomainDelete abgefragt werden und wird innerhalb der Domain-Erweiterung deletion ausgegeben.

Wird eine Löschung 2 Tage vor dem Ablaufdatum (expire) oder später terminiert, wird sie erst zum Ablaufdatum ausgeführt.

XML-Beispiele

Beispiel ohne definiertes Löschdatum

Request
<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.com</domain:name>
            </domain:delete>
        </delete>
        <clTRID>ABC-12345</clTRID>
    </command>
</epp>

Beispiel mit definiertem Löschdatum

Request
<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.com</domain:name>
            </domain:delete>
        </delete>
 		<extension>
            <domainrobot:domain xmlns:domainrobot="urn:org:domainrobot:ns:ext-1.0">
                <domainrobot:deletion>2017-05-22T12:47:12.000Z</domainrobot:deletion>
            </domainrobot:domain>
        </extension>
		<clTRID>ABC-12345</clTRID>
    </command>
</epp>
Response
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
    <response>
        <result code="1001">
            <msg lang="en">Command completed successfully; action pending</msg>
        </result>
        <extension>
            <domainrobot:domain xmlns:domainrobot="urn:org:domainrobot:ns:ext-1.0">
                <domainrobot:deletion>2018-05-22T12:47:12.000Z</domainrobot:deletion>
            </domainrobot:domain>
        </extension>
        <trID>
            <clTRID>ABC-12345</clTRID>
        </trID>
    </response>
</epp>