v1

latestOpenAPI 3.1.02026-07-2671111437.2 KB
Transfers

Cancel external transfer out

Cancels an outbound transfer for the given domain. Use this when the domain is being transferred out of name.com (losing registrar) to another (gaining) registrar and the registrant or reseller wants to cancel that transfer. The endpoint validates that the domain exists and belongs to the authenticated account. Only domains in a pending transfer (out) state can be canceled.

post/core/v1/transfers/external/out/{domainName}:cancel

Path parameters

domainNamestring required
Example:example.com

DomainName is the domain whose transfer out should be canceled.

Headers

Content-Type'application/json' required

Required Content-Type Header for POST requests.

Response

Transfer out canceled successfully. Returns the domain name and updated status.

domainNamestring required

The punycode-encoded domain name.

status'canceled' required

The transfer-out status after the operation (e.g. canceled when the cancel succeeded).

Example response

{
  "domainName": "example.com",
  "status": "canceled"
}