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
Highlighted
675    
0

Get all the columns of infoblox network
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-29-2018 02:18 AM
Am using an api https://192.168.4.9/wapi/v2.5/ipv4address?ip_address=192.168.8.1 to get the network details of an ip address which i have passed.But am able to get only few details like mac_address,ip_address.
How can i get all the columns like os,netbios name,first discovered and last discovered column using api api?
How can i get all the columns like os,netbios name,first discovered and last discovered column using api api?
Solved! Go to Solution.

Re: Get all the columns of infoblox network
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-29-2018 02:35 AM
Hi,
By default, all the fields are not returned during a GET request. You can use the _return_fields argument to get the desired data. You would have to explicitly mention the additional fields you require with a _return_fields+=<requiredfield>
In your case, you would need to query the discovered_data, like below:
https://192.168.4.9/wapi/v2.5/ipv4address?ip_address=192.168.8.1&_return_fields%2B=discovered_data
Re: Get all the columns of infoblox network
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-29-2018 02:48 AM
Thanks..It worked