/node-eloqua

Primary LanguageTypeScriptMIT LicenseMIT

node-eloqua

A node.js wrapper for the Eloqua API

CircleCI Code Climate Issue Count Test Coverage Dependencies

npm install eloqua

General usage

const eloqua = new Eloqua({
  siteName: ...,
  userName: ...,
  password: ...
});
const results = await eloqua.contacts.getAll();

Bulk export

API Documentation

Get the first page of results

const results = await eloqua.bulk.runExport(name, fields, filter);

Get a stream of the results

const stream = await eloqua.bulk.getExportStream(name, fields, filter);