flowroute-sms-api

0.0.1 • Public • Published

Flowroute SMS API

Simple API for communicating with the Flowroute SMS API.

Other Projects

This project is only part of the entire Flowroute API. Other projects are:

Project Description
flowroute-sms-api SMS Messaging
flowroute-mms-api MMS Messaging
flowroute-messaging-api SMS & MMS Messaging

Installation

npm i --save flowroute-sms-api

Example Usage

const sms = require('flowroute-sms-api');
const params = require('./params.json');

const { from, to, body, callbackUrl, accessKey, secretKey } = params;

let id = '';
if (callbackUrl) {
  sms.send.withCallback(from, to, body, callbackUrl, accessKey, secretKey, (err, info) => {
    if (err) { throw err; }
    id = info.id;
  });
} else {
    sms.send.withoutCallback(from, to, body, accessKey, secretKey, (err, info) => {
    if (err) { throw err; }
    id = info.id;
  });
}

console.log(`Message ID: ${id}`);

Author Info

This project has been created for my personal use. It is maintained. Feel free to use it at your leisure. If you need help, either open an issue or get in touch directly:

Fred Lackey
fred.lackey@gmail.com
www.fredlackey.com

Package Sidebar

Install

npm i flowroute-sms-api

Weekly Downloads

3

Version

0.0.1

License

Apache-2.0

Unpacked Size

19.6 kB

Total Files

12

Last publish

Collaborators

  • fredlackey