"Fantasy Island at Savanah Cinemas from 17 July. Reserve your seat now."
e-url.co/slKde
Send SMS to any number from your application by using our SDKs or REST API with branding (Sending SMS with branding is subject to availability in some countries)
Try sample code for your favorite language and see how simple our SMS API is.
// Installation
npm install shoutout-sdk --save
// Usage
var ShoutoutClient = require('shoutout-sdk');
var apiKey = 'XXXXXXXXX.XXXXXXXXX.XXXXXXXXX';
var debug = true, verifySSL = false;
var client = new ShoutoutClient(apiKey, debug, verifySSL);
var message = {
"content": {"sms" : "Sent via ShoutOUT Lite"},
"destinations" : ["94771234567"],
"source" : "ShoutDEMO",
"transports" : ["SMS"]
};
client.sendMessage(message, (error, result) => {
if(error) {
console.error('Error sending message!',error);
} else {
console.log('Sending message successful!',result);
}
});
Start sending SMS from your favourite application