Hi,
I'm running two Proxmox servers (first one on 6.1- 3 and the second one on 6.2-4). Until the upgrade to 6.2-4 I was able to use the /nodes/ as well as the /status/ API endpoints to request some futher information about the host. Before the upgrade I received information like the CPU model from /nodes/{node}/status.
For example: /nodes/{nodeName}/
But after the update there are a few information missing:
Was anything changed in the API? The /nodes/{nodeName}/status/ endpoint also delivers no more information; it's just an empty result. I've read that API tokens were introduced in 6.2, could this have changed anything and I have to use those tokens now in order to get the information I require?
Thanks for your help in advance!
I'm running two Proxmox servers (first one on 6.1- 3 and the second one on 6.2-4). Until the upgrade to 6.2-4 I was able to use the /nodes/ as well as the /status/ API endpoints to request some futher information about the host. Before the upgrade I received information like the CPU model from /nodes/{node}/status.
For example: /nodes/{nodeName}/
Code:
[
"data" => [
[
"maxdisk" => 5217320960,
"uptime" => 6125565,
"level" => "",
"maxmem" => 135086149632,
"maxcpu" => 48,
"ssl_fingerprint" => "...",
"cpu" => 0.059231695302433,
"id" => "node/vnode01",
"node" => "vnode01",
"type" => "node",
"status" => "online",
"disk" => 2353868800,
"mem" => 81699344384,
],
],
]
But after the update there are a few information missing:
Code:
[
"data" => [
[
"level" => "",
"ssl_fingerprint" => "...",
"id" => "node/pve",
"status" => "online",
"node" => "pve",
"type" => "node",
],
],
]
Was anything changed in the API? The /nodes/{nodeName}/status/ endpoint also delivers no more information; it's just an empty result. I've read that API tokens were introduced in 6.2, could this have changed anything and I have to use those tokens now in order to get the information I require?
Thanks for your help in advance!