Skip to content
New issue

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

bulkdelete ipaddresses: wrong request model defined in spec #204

Closed
soumiksamanta opened this issue Feb 27, 2025 · 1 comment
Closed

bulkdelete ipaddresses: wrong request model defined in spec #204

soumiksamanta opened this issue Feb 27, 2025 · 1 comment

Comments

@soumiksamanta
Copy link

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.

@nutgood
Copy link
Collaborator

nutgood commented Feb 27, 2025

This should be created in the main netbox repository, this is the go-language repository and netbox is developed here

@nutgood nutgood closed this as not planned Won't fix, can't repro, duplicate, stale Feb 27, 2025
nutgood added a commit that referenced this issue Feb 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants