We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the swagger to bulk delete multiple IPAddresses does not work. The request body is a list of IPAddress
curl -X 'DELETE' \ 'http://netbox.nokia.com:8090/api/ipam/ip-addresses/' \ -H 'accept: */*' \ -H 'Content-Type: application/json' \ -H 'X-CSRFTOKEN: GG45Az6VW9x5EouvV3tCX0obbqa80xZ2sCdJujXyXMfskd9Fdpcn4AfwdyXrRHWG' \ -d '[ { "address": "1.1.1.1/32" } ]'
However on executing HTTP 400 is returned
[ { "id": [ "This field is required." ] } ]
In fact if the request is sent with list of ids in the body, the deletion is successful with 204 code.
The text was updated successfully, but these errors were encountered:
This should be created in the main netbox repository, this is the go-language repository and netbox is developed here
Sorry, something went wrong.
Merge branch 'test/#204'
b54f359
No branches or pull requests
Using the swagger to bulk delete multiple IPAddresses does not work. The request body is a list of IPAddress
However on executing HTTP 400 is returned
In fact if the request is sent with list of ids in the body, the deletion is successful with 204 code.
The text was updated successfully, but these errors were encountered: