0.0.11 • Published 6 years ago

node-textmarketer v0.0.11

Weekly downloads
6
License
ISC
Repository
github
Last release
6 years ago

node-textmarketer

A very simple promise based node.js wrapper around axios and qs for posting to api of textmarketer.

This is for sending SMS via textmarketer.

Installation

npm install node-textmarketer

Example usage
var textmarketer = require("node-textmarketer");

var username = "yourUsername";
var password = "yourPassword";

var sms = new textmarketer(username, password);


sms.send({
    "to": '01234123476',
    "message": 'test message',
    "orig": 'TESTER'
}).then(response => {
    console.log("sms sent ok");
    console.log(response);
    //your success code ....

}).catch(response => {
    console.log("SMS SENDING ERROR");
    console.log(response);
    //your fail code ....
})

If the response is successful will be an object in the form: {"status" : "ok", "balance" : 100}

response if fail will be

{"status" : "error", "error" : "the error text returned from api here"}