.. | ||
.npmignore | ||
changlog.txt | ||
Gruntfile.js | ||
index.js | ||
index.min.js | ||
package.json | ||
README.md | ||
test.js |
Msg91
Msg91 API for node.js
Msg91 Installation
npm install msg91 --save
Msg91 Integration
Send SMS
var msg91 = require("msg91")("API_KEY", "SENDER_ID", "ROUTE_NO" );
// Mobile No can be a single number, list or csv string
var mobileNo = "XXXXXXXXXX";
var mobileNo = [ "XXXXXXXXXX", "XXXXXXXXXX", "XXXXXXXXXX" ];
var mobileNo = "XXXXXXXXXX,XXXXXXXXXX,XXXXXXXXXX";
msg91.send(mobileNo, "MESSAGE", function(err, response){
console.log(err);
console.log(response);
});
Get Balance
msg91.getBalance(function(err, msgCount){
console.log(err);
console.log(msgCount);
});
// Get Balance for given Route.
msg91.getBalance("ROUTE_NO", function(err, msgCount){
console.log(err);
console.log(msgCount);
});
Msg91 Constants
ROUTE_NO
1 - Promotional Route
4 - Transactional Route