Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Add bulk of subnets via single API call
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2019 06:29 AM
3700     0
Hi,
is there a way to add bulk of subnets via single API call? I do not want to use an external file and use an API to call this file. Is there anything else that i can do?
Solved! Go to Solution.
Labels:
Re: Add bulk of subnets via single API call
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2019 02:59 AM
3701     0
Hi,
If you do not want to use the import CSV file option, you can use the request object to make multiple API calls.
curl -k -u admin:Infoblox -H 'content-type:application/json' -X POST "https://127.0.0.1/wapi/v2.10/request" -d '[{"method": "POST", "object": "network", "data": {"network": "10.10.10.0/24"}}, {"method": "POST", "object": "network", "data": {"network": "10.10.20.0/24"}}, {"method": "POST", "object": "network", "data": {"network": "10.10.30.0/24"}}]'
You will get an output like below.
[ "network/ZG5zLm5ldHdvcmskMTAuMTAuMTAuMC8yNC8w:10.10.10.0/24/default", "network/ZG5zLm5ldHdvcmskMTAuMTAuMjAuMC8yNC8w:10.10.20.0/24/default", "network/ZG5zLm5ldHdvcmskMTAuMTAuMzAuMC8yNC8w:10.10.30.0/24/default" ]
Regards,
Krishna Vasudevan