Get details of an ongoing service transfer

Retrieve details about a specific service transfer, such as a domain transfer. It returns a unique requestId required to track the transfer status in other API calls. Use this when you need to verify information about an ongoing or recently completed transfer.

Headers

Accept Example
Content-Type Example

Body

required
application/json
token string required

Responses

200
success boolean
timestamp string
requestId string
data object
400
error string
message string
code string
timestamp string
requestId string
401
error string
message string
code string
timestamp string
requestId string
404
error string
message string
code string
timestamp string
requestId string
POST https://cloud.hostup.se/api/transfers/details
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/transfers/details" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "token": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "accountId": "string",
    "serviceName": "string",
    "serviceType": "string",
    "expiresAt": "string",
    "createdAt": "string"
  }
}
Request Body
{
  "token": "string"
}