SalesforceIQ API wrapper for NodeJS
Inspired by https://github.com/sjlu/node-relateiq
npm install salesforceiq --save
var SalesforceIQ = require('salesforceiq');
var client = new SalesforceIQ(key, secret);
client.createAccount({
name: "Abacus"
}, function(err, account) {
console.log(err);
console.log(account.id);
});
To run the mocha tests, you'll need to have a valid SalesforceIQ API Key and Secret. Once you have obtained them, you will need to expose them to your local environment.
export SALESFORCEIQ_KEY=
export SALESFORCEIQ_SECRET=
MIT.