Maszyny wirtualne

List VMs

GET
/cloud/project/{project_uuid}/vm/

Returns virtual machines in the project (status and resource totals). Requires project membership.

Authorization

bearerAuth
AuthorizationBearer <token>

API key created in the portal (Settings → API Keys). Send as Authorization: Bearer <key>.

In: header

Path Parameters

project_uuid*string

Project UUID.

Response Body

application/json

curl -X GET "https://example.com/cloud/project/string/vm/"
[  {    "vmid": 0,    "name": "string",    "status": "string",    "maxmem": 0,    "maxcpu": 0,    "maxdisk": 0,    "cpu": 0.1,    "mem": 0,    "cpu_mode": "string"  }]