Hello,
I have multiple subnets to create in Solarwinds (without using the GUI), some of them have more than 4096 IP Addresses and Solarwinds does not automatically populate IPs for them.
The CRUD operations provided in the SDK allow me to create IPs but I get an error 400 if the same address is already present in DB, no matter the Hierarchy Groups (which usually act as namespaces) or the SubnetId I set in the request body.
Here's an example:
Request | https://<hostname>/SolarWinds/InformationService/v3/Json/Create/IPAM.IPNode |
|---|
Body | {
"SubnetId":1320,
"IPAddress": "10.0.0.5",
"IPOrdinal": 5
}
|
|---|
Thank you for your help !