Table of Contents

Function

The DomainCancelationDelete task deletes an existing dated cancelation order that has not yet been executed.

Interaction with an existing AuthInfo

When deleting a cancelation order of type Preack, an existing AuthInfo1 is always deleted.

Some TLDs have specific periods of notice. These are checked by the system when an request is received. If the period of notice is not kept, the domain is automatically renewed. For some TLDs, only cancelation at the end of the term is possible. Other entries (a concrete cancelation date or "now") are changed by the system to "expire".

Description

Route: DELETE /domain/{name}/cancelation
There is no need to send a body.

Request
{
}
Response
{
    "stid": "20190701-app3-dev-9716",
    "status": {
        "code": "S0103103",
        "text": "Cancelation has been deleted successfully.",
        "type": "SUCCESS"
    },
    "object": {
        "type": "DomainCancelation",
        "value": "example.com"
    }
}

Task code: 0103103
Uses
Cancelation object

Request
<request>
	<auth>
		<user>customer</user>
		<password>password</password>
		<context>4</context>
	</auth>
	<task>
		<code>0103103</code>
		<cancelation>
			<domain>example.com</domain>
			<execdate>now</execdate>
		</cancelation>
	</task>
</request>
Response
<response>
	<result>
		<status>
			<code>S0103103</code>
			<text>Cancelation has been deleted successfully.</text>
			<type>success</type>
		</status>
	</result>
</response>