/node-relateiq

RelateIQ integration module.

Primary LanguageJavaScript

node-relateiq

Travis CI

This module makes it easier to communicate with the RelateIQ API in a asynchrounous way.

Install

  • You first want to install the package to your project.

      npm install relateiq --save
    

Example

var relateiq = require('relateiq');
relateiq.createAccount({
  name: "Abacus"
}, function(err, account) {
  console.log(err);
  console.log(account.id);
});

You can look at more examples in the tests.

License

MIT.

Notes

This is an ongoing project, not all endpoints are fully supported. This is used in conjunction with Abacus and is updated to the needs of that product. If you need an endpoint supported, submit a issue or make it yourself with a pull request.