Retry transferring a domain to HostUp

Initiate a retry for transferring a domain to HostUp. This is useful if a previous domain transfer failed. The API returns an ID to track the transfer status.

Path Parameters

id integer · min: 1 required Example

Unique id identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
400
error string
message string
code string
timestamp string
requestId string
POST https://cloud.hostup.se/api/domain-transfer/{id}
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domain-transfer/20727" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "message": "string",
    "result": {
      "success": true,
      "call": "string",
      "server_time": 0,
      "info": [
        "string"
      ]
    }
  }
}