GET
/
enterprise
/
v1
/
io-cloud
/
vmaas
/
available-vms
cURL
curl -X GET "https://api.io.solutions/enterprise/v1/io-cloud/vmaas/available-vms?hardware_id=101&hardware_qty=2&node_pool_id=pool-123" \
  -H "x-api-key: $IOCLOUD_API_KEY" \
  -H "Content-Type: application/json"
{
  "data": [
    {
      "id": 0,
      "iso2": "string",
      "name": "string",
      "available_replicas": 0
    }
  ]
}

Authorizations

x-api-key
string
header
required

Query Parameters

hardware_id
integer
required

The hardware ID for which available VMs should be retrieved.

hardware_qty
integer
default:1
required

The quantity of the specified hardware to request. Defaults to 1.

Required range: x >= 1
node_pool_id
string | null

Optional node pool identifier to filter available VMs. Defaults to null.

Response

List of available VM types and configurations retrieved successfully

data
object[]