touchlead-sdk
v1.0.2
Published
A Node.js SDK for interacting with the Touchlead API.
Readme
Touchlead SDK
This is a Node.js SDK for interacting with the Touchlead API.
Installation
npm install touchlead-sdkUsage
import { TouchleadClient } from "touchlead-sdk";
const client = new TouchleadClient("your_api_key");
(async () => {
const leads = await client.getLeads();
console.log(leads);
})();