Are you interested in our Early Access Program (EAP)? This program allows you to preview code, test in your lab and provide feedback prior to General Availability (GA) release of all Infoblox products. If so, please click the link here.

API & Integration, DevOps,NetOps,SecOps

Reply

Retrieve all CNames from WAPI

Techie
Posts: 7
3121     0

I have seen several older posts about how to pull all records, but none of those seem to work.

 

I would like to pull all CName records from the WAPI. I'm using v2.5 of the API and Python v2.7.

Re: Retrieve all CNames from WAPI

Adviser
Posts: 181
3121     0

Hi,

 

Here is a sample code that you can use to query cname records:

import requests
requests.packages.urllib3.disable_warnings()  # Disable SSL warnings in requests #
url = "https://127.0.0.1/wapi/v2.5/record:cname?_return_as_object=1"
response = requests.request("GET", url, auth=('admin', 'infoblox'), verify=False)
print(response.text)

Hope this helps,

Krishna

Re: Retrieve all CNames from WAPI

Techie
Posts: 7
3121     0

Yes, this worked after I added &_max_results=xxxxxx to the end of the payload.

 

Thank you !!!

Showing results for 
Search instead for 
Did you mean: 

Recommended for You