v12

latestOpenAPI 3.0.3raw.githubusercontent.com2026-06-1811583196.1 KB
Networking

Update VPC

Update a VPC's name or description. CIDR cannot be changed after creation.

put/api/v1/vpcs/{id}

Path parameters

idstring uuid required

VPC ID (UUID).

Headers

X-Project-IDstring uuid required

Project ID. Required for all mutating operations (create, delete, power actions, resize).

Request body

namestring

New VPC name.

descriptionstring

VPC description.

Response

VPC updated

successboolean

Example response

{
  "data": {
    "name": "vpc-prod",
    "cidr": "10.0.0.0/24",
    "gateway": "10.0.0.1",
    "status": "active",
    "total_ips": 256,
    "used_ips": 4
  }
}