node-pipedrive
v1.0.2
Published
Pipedrive API Wrapper
Downloads
2
Readme
node-pipedrive
Summary
A node.js library for communicating with Pipedrive's REST API.
Example
var pipeClient = require('node-pipedrive')('my_api_key');
pipeClient
.saveDeal('My New Deal')
.then(function(id) {
console.log('Create deal with ID: ' + id);
}, function(error) {
console.error('Encountered error: ' + error);
});