var touchSMS = require("touchsms");
var sms = new touchSMS('RGyrznuKkTYa', 'LvuOpLNs0FPCYfW8XEzspq3UL', true); // Run through Sandbox Mode
var smsOptions = {
number: 61491570156,
message: 'hello world',
senderid: 'touchSMS'
}
var result = sms.sendSms(smsOptions);
result.then(function(data) {
var json = JSON.parse(data);
console.log(json);
});