infoblox

1.1.5 • Public • Published

Infoblox API

This project implements a subset of the Infoblox API via REST API using NodeJS

Installation

npm install infoblox

Usage

Example:

var Infoblox = require('infoblox');
 
var ipam = new Infoblox({
  ip: 'ip/hostname',
  apiVersion: '2.1'  
});
 
ipam.login('username', 'password').then(function(res) {
  if(res) {
    ipam.getAdminGroup().then(function(admGrps) {
      console.log(admGrps);
    })
  }
})

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i infoblox

    Weekly Downloads

    2

    Version

    1.1.5

    License

    MIT

    Last publish

    Collaborators

    • samwomack