Retrieve detailed information about an ongoing domain transfer. This requires a token obtained from POST /api/domain-transfers/generate. The result includes domain name, expiration date, creation date, and an accountId for calling POST /api/get-account-details.
/domain-transfer/[uuid] token from POST /api/domain-transfers/generate accountId → data.accountId Accept Example Content-Type Example token string required
· Example: YOUR_TOKEN data object required data.accountId string · nullable required
· Example: 20000 Nullable: may be null when not applicable.
data.createdAt string required
· Example: 2026-02-10T00:00:00.000Z data.domainExtension string
· Example: se data.expiresAt string required
· Example: 2026-02-10T00:00:00.000Z data.serviceName string required
· Example: utsikteniåexample.com data.serviceType string · enum required
· Example: domain domain vps requestId string required
· Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba Unique request identifier (UUID).
success boolean required
· Example: true True for successful responses.
timestamp string required
· Example: 2026-02-10T00:00:00.000Z ISO 8601 timestamp (UTC).
code string required
· Example: BAD_REQUEST Machine-readable error code.
error string required
· Example: Bad Request HTTP status title (e.g. 'Bad Request').
message string required
· Example: Cannot accept transfer of your own account Human-readable message.
requestId string required
· Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba Unique request identifier (UUID).
timestamp string required
· Example: 2026-02-10T00:00:00.000Z ISO 8601 timestamp (UTC).
code string required
· Example: UNAUTHORIZED Machine-readable error code.
error string required
· Example: Unauthorized HTTP status title (e.g. 'Bad Request').
message string required
· Example: Authentication required Human-readable message.
requestId string required
· Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba Unique request identifier (UUID).
timestamp string required
· Example: 2026-02-10T00:00:00.000Z ISO 8601 timestamp (UTC).
code string required
· Example: NOT_FOUND Machine-readable error code.
error string required
· Example: Not Found HTTP status title (e.g. 'Bad Request').
message string required
· Example: Invalid, expired, or already used transfer token not found Human-readable message.
requestId string required
· Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba Unique request identifier (UUID).
timestamp string required
· Example: 2026-02-10T00:00:00.000Z ISO 8601 timestamp (UTC).
https://cloud.hostup.se/api/transfers/details curl -X POST "https://cloud.hostup.se/api/transfers/details" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"token": "YOUR_TOKEN"
}' {
"success": true,
"timestamp": "2026-02-10T00:00:00.000Z",
"requestId": "2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba",
"data": {
"accountId": null,
"serviceName": "utsikteniåexample.com",
"serviceType": "domain",
"domainExtension": "se",
"expiresAt": "2026-02-10T00:00:00.000Z",
"createdAt": "2026-02-10T00:00:00.000Z"
}
} {
"token": "YOUR_TOKEN"
}