cakemail-api-wrapper

0.0.1 • Public • Published

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);
});

Readme

Keywords

none

Package Sidebar

Install

npm i cakemail-api-wrapper

Weekly Downloads

2

Version

0.0.1

License

none

Last publish

Collaborators

  • cjoudrey