Skip to main content
POST
/
core
/
v1
/
transfers
/
external
/
out
/
{domainName}
:cancel
Cancel external transfer out
curl --request POST \
  --url https://api.dev.name.com/core/v1/transfers/external/out/{domainName}:cancel \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: <content-type>'
{
  "domainName": "example.com",
  "status": "canceled"
}

Documentation Index

Fetch the complete documentation index at: https://docs.name.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate via HTTP Basic with your account username and API token. Examples use an explicit 'Authorization: Basic <base64(username:token)>' header; 'curl -u username:token' is equivalent. For sandbox, append "-test" to your username and use your sandbox token on api.dev.name.com.

Headers

Content-Type
enum<string>
required

Required Content-Type Header for POST requests.

Available options:
application/json

Path Parameters

domainName
string
required

DomainName is the domain whose transfer out should be canceled.

Example:

"example.com"

Response

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

Response after successfully canceling a domain transfer out request.

domainName
string
required

The punycode-encoded domain name.

Example:

"example.com"

status
enum<string>
required

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

Available options:
canceled
Example:

"canceled"