Accept domain or VPS transfer

Accept an ongoing domain or VPS transfer. You need a token obtained from a previous call (e.g., POST /api/domain-transfers/generate). After acceptance, an ID is returned to track the status.

Headers

Accept Example
Content-Type Example

Body

required
application/json
token string required

Responses

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