Skip to content

the-main-thing/sendpulse-rest-api-node.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SendPulse-rest-api-node.js

A simple SendPulse REST client library and example for Node.js

API Documentation https://sendpulse.com/api

Install

npm install sendpulse-api

Usage

var sendpulse = require("sendpulse-api");
/*
 * https://login.sendpulse.com/settings/#api
 */
var API_USER_ID = "USER_ID";
var API_SECRET = "USER_SECRET";
var TOKEN_STORAGE = "/tmp/";

sendpulse.init(API_USER_ID,API_SECRET,TOKEN_STORAGE,function() {
    sendpulse.listAddressBooks(console.log);
});

You can get full list of API library methods in https://github.com/sendpulse/sendpulse-rest-api-node.js/blob/master/example.js

About

A simple SendPulse REST client library and example for Node.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%