Remove a routed IPv6 address from a VM.

This endpoint releases a specific routed IPv6 address associated with a virtual machine (VM). After release, the address may enter a cooldown period before becoming available for reallocation. The endpoint returns a 'requestId' to track the operation and an 'allocation' with an ID for future reference or follow-up calls.

Path Parameters

vmid integer · min: 1 required Example

Unique vmid identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
DELETE https://cloud.hostup.se/api/vm/{vmid}/routed-ipv6
For AI assistants
cURL
curl -X DELETE "https://cloud.hostup.se/api/vm/16228/routed-ipv6" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "released": true,
    "cooldownDays": 0,
    "allocation": {
      "id": 0,
      "rack_id": "string",
      "client_id": "string",
      "account_id": "string",
      "proxmox_vm_id": "string",
      "prefix": "string",
      "prefix_length": 0,
      "next_hop": "string",
      "status": "string",
      "allocated_at": "string",
      "released_at": "string",
      "cooldown_until": "string",
      "metadata": {
        "updatedAt": "string",
        "updatedBy": "string",
        "releasedAt": "string",
        "releasedBy": "string",
        "releaseSource": "string"
      },
      "created_at": "string",
      "updated_at": "string"
    }
  }
}