1.2.0 • Published 5 years ago

salesloft v1.2.0

Weekly downloads
22
License
MIT
Repository
-
Last release
5 years ago

SalesLoft

An unofficial Node client for the SalesLoft API.

Installation:

Use npm to install the package:

$ npm install salesloft

Example Usage:

import { SalesLoft } from 'salesloft';
const sl = new SalesLoft('YOUR_API_KEY');
sl.Me.list().then((results) => {
  console.log(`Me results: ${results}`);
});