Skip to content
This repository has been archived by the owner on Oct 7, 2018. It is now read-only.

SemanticlabsGmbH/node-salesforceiq

 
 

Repository files navigation

node-salesforceiq

SalesforceIQ API wrapper for NodeJS

Coverage Status Build Status

Inspired by https://github.com/sjlu/node-relateiq

Usage

Installation

npm install salesforceiq --save

Getting Started

var SalesforceIQ = require('salesforceiq');

var client = new SalesforceIQ(key, secret);
client.createAccount({
  name: "Abacus"
}, function(err, account) {
  console.log(err);
  console.log(account.id);
});

More Examples

Developing

Tests

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=

License

MIT.

About

SalesforceIQ API wrapper for NodeJS

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%