Maszyny wirtualne

Get VM config

GET
/cloud/project/{project_uuid}/vm/{vmid}/config/current/

Returns the current VM configuration (CPU, RAM, and notes). Disk and NIC keys such as scsi0, net0, and ipconfig0 are included when present.

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.

vmid*integer

VM identifier (VMID).

Response Body

application/json

curl -X GET "https://example.com/cloud/project/string/vm/0/config/current/"
{  "cores": 0,  "sockets": 0,  "vcpus": 0,  "memory": 0,  "name": "string",  "description": "string"}