npm.io
0.1.0 • Published 13 years ago

cc-client

Licence
Version
0.1.0
Deps
3
Vulns
3
Weekly
0

cc-client

Node.js wrapper for the Constant Contact API

Installation
npm install cc-client
Basic Use
var client = require('cc-client')('APIKEY', 'USERNAME', 'PASSWORD');

// Get all contacts
client.all(function (err, obj) {
    console.dir(obj);
});

// Get one contact by id
client.one('1', function (err, obj) {
    console.dir(obj);
});

// Search for a contact by email address
client.search('kitty@catworld.com', function (err, obj) {
    console.dir(obj);
});

// Create a new contact with the source type of "ACTION_BY_CUSTOMER" and add it to list 1
client.create('nyan@cat.com', 'ACTION_BY_CUSTOMER', 1, function (err, obj) {
    console.dir(obj);
});
To Test
node test/index.js --apikey APIKEY --user USERNAME --pass PASSWORD