eloqua
v1.3.7
Published
A node wrapper for the Eloqua API
Downloads
1,356
Readme
node-eloqua
A node.js wrapper for the Eloqua API
npm install eloqua
General usage
const eloqua = new Eloqua({
siteName: ...,
userName: ...,
password: ...
});
const results = await eloqua.contacts.getAll();
Bulk export
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);