InfoBlox Integration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-22-2015 09:58 AM
I am looking for the following.
Infoblox DDI activity pack
I need to install it and see how far this actually goes.
I wand the InfoBlox Grid Server and Service Now CMDB to automatically stay in sync.
Right now the FQDN field isn't populated, and I want this to be populated directly from InfoBlox.
If I need to script this, I will but I need som help to understand the process and/or if I need to use REST API to do this.
I saw some code in Python and Perl and need to know more.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-16-2018 12:55 AM
Yes, of course.
Here we hace our Infoblox integration.
We did created this methods:
For example, the ipamGetIP method:
When you replace the ${host} parameter with the value (for test with the value in the Variable Substitutions related list) obtains the host's IP
If you want to call this from a workflow in a script activity can use:
//REST call ipamGetHostnameIP
try{
var r = new sn_ws.RESTMessageV2('IPAM', 'ipamGetHostIP');
var host = splitNombres[i].trim() + '.domain.com';
r.setStringParameter('host', host);
response = r.execute();
responseBody = response.haveError() ? response.getErrorMessage() : response.getBody();
status = response.getStatusCode();
} catch(ex) {
responseBody = ex.getMessage();
status = '500';
} finally {
requestBody = r ? r.getRequestBody():null;
}
Please, mark correct or useful if I helped you
Thanks
Ariel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-16-2018 01:17 PM
Thank you Ariel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-24-2020 07:16 AM
Hi. Did you need orchestration to do this or were APIs created all custom?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-25-2020 02:11 AM
Hi Anfield,
With APIs REST calls in a custom way.
There is a spoke in Integration Hub for integrate Infoblox too.
Please If I helped you, mark helpful or correct.
Thanks
Ariel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-17-2021 12:09 PM
Hi Ariel,
We are looking to integrate Infoblox and serviceNow for DNS activities currently but we may have to for IPAM as well.
Can you provide some information on how you have implemented? Are you using DDI Activity pack or Infoblox Spoke or custom? Appreciate any inputs on this.
Thanks
Srivani