Skip to content

xmaciasg/smsapi-javascript-client

 
 

Repository files navigation

SMSAPI JavaScript (node.js) Client

Installation

npm install smsapi --save

Example

import { SMSAPI } from 'smsapi';

const smsapi = new SMSAPI('oAuthToken');

try {
  const result = await smsapi.sms.sendSms('+48605xxxxxx', 'My first message!');

  console.log(result);
} catch (err) {
  console.log(err);
}

Supported modules

  • Contacts
    • Contact fields
    • Contact groups
  • Hlr
  • MMS
  • Profile
  • Sendernames
  • SMS
  • Subusers
  • Templates
  • VMS

Docs & Infos

License

Apache 2.0 License

About

SMSAPI javascripts client that allows you to send messages and administrate your SMSAPI account.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 99.1%
  • Other 0.9%