1.3.0 • Published 4 years ago

salesloft-extended v1.3.0

Weekly downloads
14
License
MIT
Repository
-
Last release
4 years ago

SalesLoft

An unofficial Node client for the SalesLoft API.

Forked from github.com/alexleventer/node-salesloft by Isaac Nassimi

I added webhooks

Installation:

Use npm to install the package:

$ npm install salesloft-extended

Example Usage:

import { SalesLoft } from 'salesloft'
const sl = new SalesLoft('YOUR_API_KEY') // Works with oauth creds as well
sl.Me.list().then((results) => {
	console.log(`Me results: ${results}`)
})