Thanks to visit codestin.com
Credit goes to github.com

Skip to content

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

License

Notifications You must be signed in to change notification settings

kiwymonzy/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

Packages

No packages published

Languages

  • TypeScript 99.1%
  • Other 0.9%