Quick deploy a cloud server (VM)

Quickly deploy a new virtual machine (VM) in the cloud. Select the desired configuration, such as the number of cores, memory, disk space, and server location, to create a new instance.

Headers

Accept Example
Content-Type Example

Body

required
application/json
hostname string required
cores integer required
memory integer required
disk integer required
location string required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/cloud/quick-deploy
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/cloud/quick-deploy" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "hostname": "string",
    "cores": 0,
    "memory": 0,
    "disk": 0,
    "location": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "message": "string",
    "orderId": 0,
    "invoiceId": "string",
    "accountId": "string",
    "hostname": "string",
    "cores": 0,
    "memory": 0,
    "disk": 0,
    "location": "string",
    "redirectUrl": "string",
    "note": "string"
  }
}
Request Body
{
  "hostname": "string",
  "cores": 0,
  "memory": 0,
  "disk": 0,
  "location": "string"
}