I am trying to send a PUT request to `/nodes/{node}/qemu/{vmid}/resize` with the following data:
`disk=sata3&size=+1G`
However, no matter how I encode this data, I keep getting the error:
`size: "value does not match the regex pattern"`
I have tied URL encoding, json, plaintext, etc. I am using nodejs https module.
There are no issues when sending the data: `delete=sata3` to `/nodes/{node}/qemu/{vmid}/config`.
What exactly is the required format for the API?
`disk=sata3&size=+1G`
However, no matter how I encode this data, I keep getting the error:
`size: "value does not match the regex pattern"`
I have tied URL encoding, json, plaintext, etc. I am using nodejs https module.
There are no issues when sending the data: `delete=sata3` to `/nodes/{node}/qemu/{vmid}/config`.
What exactly is the required format for the API?