-
Notifications
You must be signed in to change notification settings - Fork 165
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
400 on IpamPrefixesBulkUpdate, ID Required #207
Comments
Well, the endpoint does require them defined. You can set the property like this: prefixes[0].AdditionalProperties["id"] = id |
I thought this endpoint was for creating new prefixes in bulk, and for updating existing ones there's IpamPrefixesBulkPartialUpdate. Surely, users don't need to manage generation of IDs on their end, so I presume there might be some kind of confusion in regards to purposes of these two endpoints I mentioned. Or those IDs are only for the client-side of the request and have nothing to do with IDs on server-side? When I try assigning an additional property as suggested I get |
It doesn't look like netbox API let's you bulk-create IPAM prefixes.
Looking at the OpenAPI spec (remember, this is a 100% generated SDK): post:
operationId: ipam_prefixes_create
description: Post a list of prefix objects.
tags:
- ipam
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/WritablePrefixRequest' # Accepts one prefix
put:
operationId: ipam_prefixes_bulk_update
description: Put a list of prefix objects.
tags:
- ipam
requestBody:
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/PrefixRequest' # Accepts a list of prefix
patch:
operationId: ipam_prefixes_bulk_partial_update
description: Patch a list of prefix objects.
tags:
- ipam
requestBody:
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/PrefixRequest' # Accepts a list of prefix
Looking at the |
Netbox: v4.2.4
go-netbox: v4.2.2-3
Output:
HTTP Error: Status Code=400, Body=[{"id":["This field is required."]},{"id":["This field is required."]}]
I believe this endpoint shouldn't require IDs defined?
The text was updated successfully, but these errors were encountered: