Hello everyone,
I'm having trouble adding new network groups using the API add-group endpoint. I was able can create new hosts using the add-host endpoint so that confirms that my user does have Write permissions too so the issue is not related to that. I followed the documentation part which states the API has a option for "add-group with multiple members" but can't seem to make it work, I end up getting 404 client errors for some reason. When I try the format for adding a group with a single member I also keep getting 404 errors. Is there something I don't know about? Maybe this option is deprecated or something?
Here's an example just like the payload I'm trying to POST to the API add-group endpoint...
{
"name" : "my_testing_group",
"members" : [ "192.168.1.156", "192.168.1.158" ]
}