Generate domain transfer token

Initiate a domain transfer to a new owner by generating a unique token. The new owner needs this token to complete the transfer on their account. You must provide the ID of the domain you wish to transfer.

Headers

Accept Example
Content-Type Example

Body

required
application/json
domainId string required

Responses

200
success boolean
timestamp string
requestId string
data object
500
error string
message string
code string
timestamp string
requestId string
POST https://cloud.hostup.se/api/domain-transfers/generate
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domain-transfers/generate" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "domainId": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "mismatch": true,
    "message": "string",
    "yourOrgno": "string"
  }
}
Request Body
{
  "domainId": "string"
}