Name Last Update
..
.npmignore Loading commit data...
Jakefile Loading commit data...
LICENSE Loading commit data...
README.md Loading commit data...
jsdocconf.json Loading commit data...
package.json Loading commit data...
servicenow.js Loading commit data...

README.md

ServiceNow REST Client

ServiceNow REST Client is a collections of convience wrapper methods to the JSON Web Service plugin calls.

Quickstart

var servicenow = require('servicenow');
var config = {
    instance: "https://demo.servicenow.com",
    username: "admin",
    password: "admin"
};
var client = new servicenow.Client(config);
client.getRecords("incident","Active=true",function(error,result) {
  if(!error) {
    // call succeded
  }
});