salesloft-extended
v1.3.0
Published
An unofficial Node client for the SalesLoft API.
Downloads
3
Readme
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}`)
})