1.0.1 • Published 2 years ago

loops-js v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

This package contains the code that we use to interact with Loops API, the module is free to use by anyone who has access to their platform.

It can be installed by using

npm install loops-js

The module includes every available API endpoint, an example of creating a new contact would be as followed

const Loops = require('loops-js');
const client = new Loops('apiKey');
await client.createContact('john.doe@example.com', 'John', 'Doe', 'payingCustomer', 'example.com');