0.0.1 • Published 12 years ago

cakemail-api-wrapper v0.0.1

Weekly downloads
10
License
-
Repository
github
Last release
12 years ago

NodeJS package to consume the CakeMail API

You can find the CakeMail API documentation on the Dev Portal.

Usage

Example call to List.GetList:

var cakemail = require("cakemail-api-wrapper");

var client = new cakemail.Client({
  apiKey: "<YOUR API KEY>"
});

client.execute("List", "GetList", {
  user_key: "<YOUR USER KEY>"
}, function(err, data) {
  console.log(err);
  console.log(data);
});
0.0.1

12 years ago