node-pipedrive

Pipedrive API Wrapper

Usage no npm install needed!

<script type="module">
  import nodePipedrive from 'https://cdn.skypack.dev/node-pipedrive';
</script>

README

node-pipedrive

Build

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);
    });