Generate a secure transfer token for your services

Create a temporary, secure token to share with the new owner of your service. This token allows the new owner to complete the service transfer to their account.

Headers

Accept Example
Content-Type Example

Body

required
application/json
accountId string required

Responses

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