I'm very new to doing things with APIs and running into this error. What exactly does "is an excess property and therefore is not allowed" mean as a response? Below is the body I'm sending via Bruno client. I'm sure I'm missing something simple, the docs were a bit of a struggle though.
Endpoint is https://xo.ducknet.org/rest/v0/pools/3c6777fc-e8d8-e065-7c30-37eb2800f472/actions/create_vm/
{
"auto_poweron": true,
"boot": false,
"memory": 1073741824,
"name_description": "test_desc",
"name_label": "test_label",
"template": "3ceb66f7-c137-ef4a-7a06-9af524ed5110"
}
Full response
{
"error": {
"body": {
"message": "\"auto_poweron,memory,name_description\" is an excess property and therefore is not allowed",
"value": {
"name_description": "test_desc",
"memory": 1073741824,
"auto_poweron": true
}
}
}
}