- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
How to create a network (API) - from web portal?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2020 05:19 PM
hi,
I would like to create some automation where from one web portal, let's say user put request for /24 network and admin approve it and put it specific /24 of 10.10.10.0/24, is there any API can be used to create this specific 10.10.10.0/24 in the IPAM? Assuming that admin alr know that 10.10.10.0/24 is available and he would like to assign that via web portal.
thanks.
Re: How to create a network (API) - from web portal?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2020 02:58 AM
Hi,
You can do so using the following WAPI:
curl -k -u admin:infoblox -H 'content-type: application/json' -X POST "https://grid-master/wapi/v2.11/network?_return_fields%2B=network&_return_as_object=1 " -d '{"network": "10.10.10.0/24"}'
For more examples, you can take a look at this document.
Thanks and Regards,
Krishna Vasudevan
Re: How to create a network (API) - from web portal?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2020 08:00 PM
thanks.