When interacting with the Proxmox HTTP API and submitting a request that produces an error (e.g. creating a VM with a "vmid" that is already taken, I am not getting any error message from the api.
The following request produces a 500 error with content
...
Read more
Bash:
curl --request POST --url https://proxmox.acme/api2/json/nodes/pve-node1/qemu --header 'authorization: PVEAPIToken=root@pam!api=obfuscated-token' --header 'content-type: application/json' --data '{ "vmid":100}'
The following request produces a 500 error with content
JSON:
{"data": null}
Read more