For the complete documentation index, see llms.txt. This page is also available as Markdown.

Check whether the given IP addresses are free in a location

post
Authorizations
defguard_sessionstringRequired
Path parameters
network_idinteger · int64Required

ID of the network.

Body
device_idinteger · int64 · nullableOptional
ipsstring[]Required
Responses
200

Availability of the requested IP addresses.

application/json
object[]Optional
post/api/v1/device/network/ip/{network_id}
POST /api/v1/device/network/ip/{network_id} HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 33

{
  "device_id": null,
  "ips": [
    "text"
  ]
}
[
  {
    "available": true,
    "valid": true
  }
]

Last updated

Was this helpful?