semaphore-sms-api

1.0.0 • Public • Published

semaphore-sms-api

Semaphore SMS API Client based on homepage.

Installation

npm install semaphore-sms-api

You also need to provide your API KEY from Semaphore.

Usage

var Semaphore = require('semaphore-sms-api');

var apikey = "YOUR_API_KEY";
var sms = new Semaphore(apikey);

// To check your account status:
sms.status(function(error, result) {
	if (!error)
		console.log(result);
});

// To send a single SMS message:
var payload = {
	from: 'SEMAPHORE',
	to: '09179008888',
	message: 'Semaphore API Rocks!'
};
sms.sendsms(payload, function(error, result) {
	if (!error) {
		console.log(result);
	} else
		console.log(error);
});    

License

MIT

Release History

  • 1.0.0 - Initial release

Readme

Keywords

Package Sidebar

Install

npm i semaphore-sms-api

Weekly Downloads

9

Version

1.0.0

License

none

Last publish

Collaborators

  • nullram