coolsms-rest-sdk

coolsms rest-sdk for node.js

Usage no npm install needed!

<script type="module">
  import coolsmsRestSdk from 'https://cdn.skypack.dev/coolsms-rest-sdk';
</script>

README

coolsms-rest-sdk

coolsms rest-sdk for node.js Documentation

Build Status npm version Dependency Status

Installation

npm install coolsms-rest-sdk

Test

npm test

Usage

var Coolsms = require('coolsms-rest-sdk');
var client = new Coolsms({
  key: 'your API key',
  secret: 'your API secret key'
});

client.sms.send({
  to: '00000000000',    // recipient
  from: '11111111111',  // sender
  type: 'SMS',          // SMS, LMS, MMS
  text: 'your message',
}, function (error, result) {
  if(error) {
    console.log(error);
  } else {
    console.log(result);
  }
});

Available resources & methods

Where you see params it is a plain JavaScript object, e.g. { text: 'Hello world!' } param is not need to include authentication information

License

MIT